diff options
author | Britney Fransen <brfransen@gmail.com> | 2017-01-23 17:13:15 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2017-01-23 17:13:15 (GMT) |
commit | f0c3889c3d12e1c2b81f17c0c9e54257e2b3d00e (patch) | |
tree | 137286640697197ab7ea895d75ad38a8d2c86da6 /abs/core/perl_modules | |
parent | d0b37ccccc013118824437c8afdf3c48dd4d6530 (diff) | |
download | linhes_pkgbuild-f0c3889c3d12e1c2b81f17c0c9e54257e2b3d00e.zip linhes_pkgbuild-f0c3889c3d12e1c2b81f17c0c9e54257e2b3d00e.tar.gz linhes_pkgbuild-f0c3889c3d12e1c2b81f17c0c9e54257e2b3d00e.tar.bz2 |
perl-time-format: inital inclusion
Diffstat (limited to 'abs/core/perl_modules')
-rw-r--r-- | abs/core/perl_modules/perl-time-format/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-time-format/PKGBUILD b/abs/core/perl_modules/perl-time-format/PKGBUILD new file mode 100644 index 0000000..5d240f7 --- /dev/null +++ b/abs/core/perl_modules/perl-time-format/PKGBUILD @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details +# Maintainer: Charles Mauch <cmauch@gmail.com> + +pkgname=perl-time-format +pkgver=1.12 +pkgrel=2 +pkgdesc="Perl/CPAN Module Time::Format : Easytouse datetime formatting" +arch=(any) +url="http://search.cpan.org/dist/Time-Format" +license=("GPL" "PerlArtistic") +source=("http://search.cpan.org/CPAN/authors/id/R/RO/ROODE/Time-Format-$pkgver.tar.gz") +md5sums=('cd42110c749bea1b4babcd5fa9d0fdad') + +build() { + cd "$srcdir"/Time-Format-$pkgver + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +package() { + cd "$srcdir"/Time-Format-$pkgver + make install DESTDIR="$pkgdir" + find "$pkgdir" -name '.packlist' -delete + find "$pkgdir" -name '*.pod' -delete +} |