blob: 1433b6600aeb2c7420e8f504f51b395b79136899 (
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
|
# Maintainer: zach <zach {at} zach-adams {dot} com>
# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de
pkgname=gtk-theme-arc
_pkgname=arc-theme
pkgver=20151214
pkgrel=1
pkgdesc="A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell. Official releases only."
arch=('any')
url="https://github.com/horst3180/${_pkgname}"
license=('GPL3')
depends=('gtk3' 'gtk-engine-murrine')
source=("https://github.com/horst3180/${_pkgname}/archive/$pkgver.tar.gz")
conflicts=('gtk-theme-arc-git')
md5sums=('aedd4103e09b4c341b9afe318f252f27')
build() {
cd "${_pkgname}-$pkgver"
./autogen.sh --prefix=/usr
}
package() {
make -C "${_pkgname}-$pkgver" DESTDIR="${pkgdir}" install
}
|