blob: 9cc00644a63a520448609b1a5e28208f501e67a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: lpr1 (lei.pero@gmail.com)
pkgname=adg-gtk-theme
pkgver=3.22.3
pkgrel=3
pkgdesc="Slight gray modification of Adwaita theme from the GNOME Project."
url="https://github.com/leipero/adg-gtk-theme"
arch=(any)
license=(GPL)
depends=('gtk-engine-murrine')
makedepends=('sassc' 'git' 'libarchive')
optdepends=('optipng' 'inkscape')
options=(!emptydirs)
source=("adg-gtk-theme-$pkgver.tar.gz"::"https://github.com/leipero/adg-gtk-theme/archive/3.22.3.tar.gz")
sha256sums=('db82f9e4dbfba2734b9361cde5924fcedca2584b0d76f80e8bbfb3c2180335ca')
build() {
cd "$pkgname-$pkgver"
./configure
make
}
package() {
cd "$pkgname-$pkgver"
install -dm755 "$pkgdir/usr/share"
cp -r "$srcdir"/$pkgname-$pkgver/build-aux/themes "$pkgdir/usr/share"
make DESTDIR="$pkgdir/"
make clean
}
|