blob: d0a607d8a28a82375f42a7ab7d7d1fd70a561adb (
plain)
1 # Description: Enables change of themes, icons, and fonts used by applications easily.
2 # URL: https://wiki.lxde.org/en/LXAppearance
3 # Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
4 # Depends on: gtk
5
6 name=lxappearance
7 version=0.6.3
8 release=1
9 source=(http://downloads.sourceforge.net/sourceforge/lxde/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 export LINGUAS=" "
15
16 ./configure --prefix=/usr \
17 --sysconfdir=/etc \
18 --disable-nls
19
20 make
21 make DESTDIR=$PKG install
22 }
|