blob: 609a5fe6e68f6ff0ed88e161c2cef2baa89f4177 (
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 adwaita-icon-theme meson gtk-theme-adwaita
5
6 name=arc-theme
7 version=20210412
8 release=1
9 source=(https://github.com/jnsh/$name/releases/download/$version/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 -D prefix=/usr \
14 -D themes="gtk2,gtk3,metacity,plank,unity,xfwm"
15 meson compile -C build
16 DESTDIR=$PKG meson install -C build
17
18 # meson seems to want all the PNGs to be 0755
19 find $PKG -type f \( -name "*.png" -o -name "*.gresource" \) -exec chmod 0644 '{}' \;
20 }
|