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