updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / llgal / PKGBUILD
blob2fab8f4190d74bc2f8f019c64d9ec7ae9ba36533
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>
10 pkgname=llgal
11 pkgver=0.13.15
12 pkgrel=1
13 pkgdesc="On-line gallery generator based on iGal"
14 arch=(x86_64)
15 url="http://home.gna.org/llgal/"
16 license=('GPL')
17 depends=('perl>=5.10.0' 'perl-image-size' 'perl-locale-gettext')
18 makedepends=()
19 provides=()
20 conflicts=()
21 replaces=()
22 backup=()
23 options=(!emptydirs)
24 install=
25 source=(http://download.gna.org/llgal/$pkgname-$pkgver.tar.bz2)
26 md5sums=('f0c085d2fc3a444b9e1f993db20b07a7')
28 build() {
29   cd "$srcdir/$pkgname-$pkgver"
31   sed -i 's/\/usr\/local/\/usr/g' Makefile
32   make || return 1
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: