blob: 748054489cca34abb7773ad5ef7bf37f813e663f (
plain)
1 # Description: A flat theme with transparent elements
2 # URL: https://github.com/NicoHood/arc-theme
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: gtk-engine-murrine inkscape sassc gnome-icon-theme gtk3
5
6 name=arc-theme
7 version=20190330
8 release=1
9 source=(https://github.com/NicoHood/$name/releases/download/$version/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 autoreconf -fi
14 ./configure --prefix=/usr \
15 --disable-gnome-shell
16 make
17 make DESTDIR=$PKG install
18 }
|