mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-22 20:45:00 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
22 lines
530 B
Bash
22 lines
530 B
Bash
# Maintainer: Eshan Roy <eshan@snigdhaos.org>
|
|
|
|
pkgname=snigdhaos-gtk-theme
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc='An Flat Gtk+ theme based on Material Design'
|
|
arch=('any')
|
|
license=('GPL3')
|
|
url='https://github.com/Snigdha-OS/snigdhaos-gtk-theme'
|
|
source=("$pkgname.zip")
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd "${srcdir}"/"${pkgdir}" || exit
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
package() {
|
|
install -d "$pkgdir/usr/share/themes/"
|
|
cp -r -a --no-preserve=ownership \
|
|
* "$pkgdir/usr/share/themes"
|
|
} |