blob: b4bd6ac7d07714f362d84a32b5bd8138455a5084 (
plain)
1 # Description: Enables change of themes, icons, and fonts used by applications easily.
2 # URL: https://wiki.lxde.org/en/LXAppearance
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gtk intltool
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 \
17 --prefix=/usr \
18 --sysconfdir=/etc \
19 --disable-nls
20
21 make
22 make DESTDIR=$PKG install
23 }
|