#Packager: Shador pkgname=fotowall pkgver=0.9 pkgrel=1ab source=("https://fotowall.googlecode.com/files/Fotowall-${pkgver}.tar.bz2") sourcetemplate="http://gaia.homelinux.org/salix/slkbuilds/$pkgname/" docs=("readme.markdown" "GPL_V2") url='http://www.enricoros.com/opensource/fotowall/' slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname (tool for creating collages from photos, text, webcam, ...)" "Fotowall is an opensource creative tool that lets you play with your" "pixels as you've ever wanted! Make the perfect arrangement with your" "photos, add text, live video from your webcam and the best internet" "pictures." ) build() { set -e cd $startdir/src/Fotowall-$pkgver qmake || return 1 make -j $numjobs || return 1 make install INSTALL_ROOT=$startdir/pkg || return 1# rm -r $startdir/pkg/usr/share/pixmaps for size in 16x16 32x32 64x64; do mkdir -p $startdir/pkg/usr/share/icons/hicolor/$size/apps convert fotowall.png -scale $size $startdir/pkg/usr/share/icons/hicolor/$size/apps/fotowall.png done set +e }