diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-05-29 23:13:30 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-05-29 23:13:30 (GMT) |
commit | a1734cfd582f6444c5494ec725313eab41548784 (patch) | |
tree | b2633f93c6e6f84d747cde569420763a0e00d894 /abs/core/perl_modules/perl-par-dist/PKGBUILD | |
parent | e1891778bd50dbc20ac65300a33a580b6fad9dd9 (diff) | |
download | linhes_pkgbuild-a1734cfd582f6444c5494ec725313eab41548784.zip linhes_pkgbuild-a1734cfd582f6444c5494ec725313eab41548784.tar.gz linhes_pkgbuild-a1734cfd582f6444c5494ec725313eab41548784.tar.bz2 |
perl-par-dist: initial inclusion
Diffstat (limited to 'abs/core/perl_modules/perl-par-dist/PKGBUILD')
-rw-r--r-- | abs/core/perl_modules/perl-par-dist/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-par-dist/PKGBUILD b/abs/core/perl_modules/perl-par-dist/PKGBUILD new file mode 100644 index 0000000..9034e91 --- /dev/null +++ b/abs/core/perl_modules/perl-par-dist/PKGBUILD @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Felix Yan <felixonmars@archlinux.org> +# Contributor: TDY <tdy@gmx.com> +# Contributor: François Charette <firmicus ατ gmx δοτ net> + +pkgname=perl-par-dist +pkgver=0.49 +pkgrel=3 +pkgdesc="Perl bindings to create and manipulate PAR distributions" +arch=('any') +url="http://search.cpan.org/dist/PAR-Dist/" +license=('GPL' 'PerlArtistic') +depends=('perl') +options=('!emptydirs') +source=("http://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/PAR-Dist-$pkgver.tar.gz") +md5sums=('bd852113974544f3c8c107ab4055cf8c') + +build() { + cd "$srcdir/PAR-Dist-$pkgver" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "$srcdir/PAR-Dist-$pkgver" + make test +} + +package() { + cd "$srcdir/PAR-Dist-$pkgver" + make install DESTDIR="$pkgdir" +} |