diff options
author | Britney Fransen <brfransen@gmail.com> | 2017-04-18 17:35:34 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2017-04-18 17:35:34 (GMT) |
commit | a3e950053d847e719d489c13064b6c165425385c (patch) | |
tree | fccd4ec9f53e519563c0cfd25833cd8c3caaaa20 /abs/core/perl_modules/perl-appconfig/PKGBUILD | |
parent | bd44be589a2626bd26a7f31b23c2358fb74e5c95 (diff) | |
parent | 0a8de86de9f21f7877075ac2800254239ae84a81 (diff) | |
download | linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.zip linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.tar.gz linhes_pkgbuild-a3e950053d847e719d489c13064b6c165425385c.tar.bz2 |
Merge branch 'testing'
Diffstat (limited to 'abs/core/perl_modules/perl-appconfig/PKGBUILD')
-rw-r--r-- | abs/core/perl_modules/perl-appconfig/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-appconfig/PKGBUILD b/abs/core/perl_modules/perl-appconfig/PKGBUILD new file mode 100644 index 0000000..41f9422 --- /dev/null +++ b/abs/core/perl_modules/perl-appconfig/PKGBUILD @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Felix Yan <felixonmars@archlinux.org> +# Contributor: eric <eric@archlinux.org> +# Contributor: Eric Johnson <eric@coding-zone.com> + +pkgname=perl-appconfig +_realname=AppConfig +pkgver=1.71 +pkgrel=1 +pkgdesc="Perl/CPAN AppConfig module - Read configuration files and parse command line arguments" +arch=('any') +license=('PerlArtistic' 'GPL') +url="http://search.cpan.org/dist/${_realname}/" +depends=('perl') +options=('!emptydirs') +source=("http://www.cpan.org/authors/id/N/NE/NEILB/${_realname}-${pkgver}.tar.gz") +md5sums=('7747d9241561ed5567d5e134b8648707') + +build() { + cd "${srcdir}/${_realname}-${pkgver}" + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "${srcdir}/${_realname}-${pkgver}" + make test +} + +package() { + cd "${srcdir}/${_realname}-${pkgver}" + make install DESTDIR="${pkgdir}" +} |