# Contributor: Adam Griffiths pkgname=bootsplash pkgver=3.2 pkgrel=3 pkgdesc="Userspace utilities for setting up a boot splash screen." url="http://www.bootsplash.de" depends=(libmng freetype2) conflicts=() backup=() install= source=(http://www.bootsplash.de/files/splashutils/$pkgname-$pkgver.tar.bz2 \ bootsplash-scripts.tar.gz \ # http://www.bootsplash.de/files/themes/Theme-ArchPool.tar.bz2) # Theme-ArchPool2.tar.bz2) Makefile-3.2-patch \ bootsplash-archie-theme-0.3.tar.bz2) build() { cd $startdir/src/$pkgname-$pkgver/Utilities patch -Np0 -i ../../Makefile-3.2-patch make || return 1 # the very simple Makefile does not include an install option, so just copy # the compiled binaries to their locations manually. #mkdir -p $startdir/pkg/usr/sbin mkdir -p $startdir/pkg/sbin cp $startdir/src/$pkgname-$pkgver/Utilities/{fbresolution,fbmngplay,fbtruetype,splash} $startdir/pkg/sbin cp $startdir/src/$pkgname-$pkgver/Utilities/splashpbm $startdir/pkg/sbin cd $startdir/src/$pkgname-scripts make make prefix=$startdir/pkg install # installing default Archie theme mkdir -p $startdir/pkg/etc/bootsplash/themes cp -r $startdir/src/archie $startdir/pkg/etc/bootsplash/themes/ }