diff options
author | Erich Eckner <git@eckner.net> | 2016-04-05 14:56:27 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-04-05 15:03:26 +0200 |
commit | 0c7ca8ffe147139570e9d49227a3c9588543d2e4 (patch) | |
tree | 94143a6f729f6ed5c9165cf448c69f68f0893648 /perl-const-fast/PKGBUILD | |
parent | 4a8a1d87b70fcee93d704167c5675b164f8f7f21 (diff) | |
download | archlinuxewe-0c7ca8ffe147139570e9d49227a3c9588543d2e4.tar.xz |
perl-const-fast neu
Diffstat (limited to 'perl-const-fast/PKGBUILD')
-rw-r--r-- | perl-const-fast/PKGBUILD | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/perl-const-fast/PKGBUILD b/perl-const-fast/PKGBUILD new file mode 100644 index 000000000..80ef43a4a --- /dev/null +++ b/perl-const-fast/PKGBUILD @@ -0,0 +1,55 @@ +# Contributor: John D Jones III <jnbek1972 -_AT_- g m a i l -_Dot_- com> +# Generator : CPANPLUS::Dist::Arch 1.28 + +pkgname='perl-const-fast' +pkgver='0.014' +pkgrel='1' +pkgdesc="Facility for creating read-only scalars, arrays, and hashes" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=( + 'perl-sub-exporter-progressive>=0.001007' + 'perl>=5.008' + 'perl-module-build-tiny' +) +makedepends=() +checkdepends=('perl-test-fatal') +url='http://search.mcpan.org/dist/Const-Fast' +source=("http://search.mcpan.org/CPAN/authors/id/L/LE/LEONT/Const-Fast-${pkgver}.tar.gz") +sha512sums=('89258205fe31aa5a60759ed955e6dae305de69f4bc08251242a82eec9e37251b045908585c470106ed9047f604d3292eb3231c80504b29734966b58b8402a929') +_distdir="Const-Fast-${pkgver}" + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$srcdir/$_distdir" + + /usr/bin/perl Build.PL + /usr/bin/perl Build + ) +} + +check() { + cd "$srcdir/$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + /usr/bin/perl Build test + ) +} + +package() { + cd "$srcdir/$_distdir" + /usr/bin/perl Build install + + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: |