lxappearance: initial commit

This commit is contained in:
Fredrik Rinnestam 2016-03-02 19:24:36 +01:00
parent 7b0503516c
commit 1e9defd338
3 changed files with 41 additions and 0 deletions

19
lxappearance/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/lxappearance
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/lxappearance/
-rw-r--r-- root/root usr/include/lxappearance/lxappearance.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/lxappearance.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/lxappearance.desktop
drwxr-xr-x root/root usr/share/lxappearance/
drwxr-xr-x root/root usr/share/lxappearance/ui/
-rw-r--r-- root/root usr/share/lxappearance/ui/about.ui
-rw-r--r-- root/root usr/share/lxappearance/ui/lxappearance.ui
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/lxappearance.1.gz

1
lxappearance/.md5sum Normal file
View File

@ -0,0 +1 @@
79740125628a8374c1101cf26e558fa5 lxappearance-0.6.1.tar.xz

21
lxappearance/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: Enables change of themes, icons, and fonts used by applications easily.
# URL: http://lxde.org/lxappearance_change_look_feel
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
# Depends on: gtk
name=lxappearance
version=0.6.1
release=1
source=(http://downloads.sourceforge.net/sourceforge/lxde/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/locale
}