25 lines
512 B
Plaintext
25 lines
512 B
Plaintext
# Description: Enables change of themes, icons, and fonts used by applications easily.
|
|
# URL: https://wiki.lxde.org/en/LXAppearance
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: gtk3 intltool
|
|
|
|
name=lxappearance
|
|
version=0.6.3
|
|
release=2
|
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
export LINGUAS=" "
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-nls \
|
|
--enable-gtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|