#Maintainer: George Vlahavas pkgname=salix-artwork pkgver=13.1 pkgrel=1gv arch=noarch docs=('license') source=(http://pnboy.pinguix.com/gapan/sources/salix-artwork/salix-artwork-$pkgver.tar.gz) slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "salix-icons (salix artwork for your desktop)" "This is a small package that includes the standard salix icons, like" "the default icon that shows in the desktop menu and the default salix" "desktop wallpaper." ) build() { cd $startdir/src/$pkgname-$pkgver mkdir -p $startdir/pkg/usr/share/xfce4/backdrops cp $startdir/src/$pkgname-$pkgver/wallpaper/* $startdir/pkg/usr/share/xfce4/backdrops/ # Copy icons to the right place ICONSIZES="128 96 72 64 48 32 24 22 16" for i in $ICONSIZES; do mkdir -p $startdir/pkg/usr/share/icons/hicolor/$i\x$i/apps; mv $startdir/src/$pkgname-$pkgver/icons/salix-$i.png $startdir/pkg/usr/share/icons/hicolor/$i\x$i/apps/salix.png; done; chown -R root:root $startdir/pkg/ }