1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/Perl_Package_Guidelines for more
7 # information on Perl packaging.
9 # Contributor: Your Name <youremail@domain.com>
13 pkgdesc="On-line gallery generator based on iGal"
15 url="http://home.gna.org/llgal/"
17 depends=('perl>=5.10.0' 'perl-image-size' 'perl-locale-gettext')
25 source=(http://download.gna.org/llgal/$pkgname-$pkgver.tar.bz2)
26 md5sums=('f0c085d2fc3a444b9e1f993db20b07a7')
29 cd "$srcdir/$pkgname-$pkgver"
31 sed -i 's/\/usr\/local/\/usr/g' Makefile
33 make install DESTDIR="$pkgdir/" || return 1
35 # remove perllocal.pod and .packlist
36 find "$pkgdir" -name perllocal.pod -delete
37 find "$pkgdir" -name .packlist -delete
40 # vim:set ts=2 sw=2 et: