xfwm4-themes: Cleanup the Pkgfile

Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
This commit is contained in:
Leo Unglaub 2015-03-04 00:15:19 +00:00
parent dd1ca23acb
commit 0f5f2fa1cf

View File

@ -10,9 +10,21 @@ version=4.10.0
release=1
source=(http://archive.xfce.org/src/art/$name/${version%.*}/$name-$version.tar.bz2)
build () {
cd $name-$version
./configure --prefix=/usr
make DESTDIR=$PKG install
find $PKG/usr/share/themes -name README -delete
build ()
{
# go into the source directory
cd $SRC/$name-$version
# configure the themes
./configure \
--prefix=/usr
# make all themes
make DESTDIR=$PKG install
# OMG, there are sooo much README files in there .. lets hunt and kill them :)
find $PKG/usr/share/themes -name README -delete
}