updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / perl-pdf-labels / PKGBUILD
blobae2ed7c6d04c54bfd88cea1b061e264239ddced4
1 # Maintainer: sportscliche <mph at sportscliche dot com>
2 pkgname=perl-pdf-labels
3 _realname=PDF-Labels
4 pkgver=1.8
5 pkgrel=1
6 pkgdesc="CPAN module to produce formatted pages of mailing labels in PDF"
7 arch=('any')
8 url="http://search.cpan.org/~owen/PDF-Labels-1.8/Labels.pm"
9 license=('GPL' 'PerlArtistic')
10 depends=('perl>=5.10.0' 'perl-pdf-create')
11 options=(!emptydirs)
12 source=(http://search.cpan.org/CPAN/authors/id/O/OW/OWEN/${_realname}-${pkgver}.tar.gz)
13 md5sums=('045898e035187446a5d643c832d55251')
15 build() {
16   cd "$srcdir/$_realname-$pkgver"
18   # install module in vendor directories.
19   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
20   make
23 package() {
24   cd "$srcdir/$_realname-$pkgver"
25   make install DESTDIR="$pkgdir/"
28 # vim:set ts=2 sw=2 et: