diff options
author | Erich Eckner <git@eckner.net> | 2016-04-05 15:13:07 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-04-05 15:13:07 +0200 |
commit | d6a19a2dc0fd4deb7f95af390c108e7c0cbc16d4 (patch) | |
tree | 9bcd13d87c9741dfb4c2fb8ff2a56059c90c0e1f /perl-file-touch | |
parent | ca2d72419aa54977cc363c1bd2fd2af00a100ac5 (diff) | |
download | archlinuxewe-d6a19a2dc0fd4deb7f95af390c108e7c0cbc16d4.tar.xz |
perl-file-touch neu
Diffstat (limited to 'perl-file-touch')
-rw-r--r-- | perl-file-touch/PKGBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/perl-file-touch/PKGBUILD b/perl-file-touch/PKGBUILD new file mode 100644 index 000000000..788e6fd45 --- /dev/null +++ b/perl-file-touch/PKGBUILD @@ -0,0 +1,50 @@ +# Contributor: John D Jones III <jnbek1972 -_AT_- g m a i l -_Dot_- com> +# Generator : CPANPLUS::Dist::Arch 1.28 + +pkgname='perl-file-touch' +pkgver='0.09' +pkgrel='1' +pkgdesc="update file access and modification times, optionally creating files if needed" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl>=5.006') +makedepends=() +url='http://search.mcpan.org/dist/File-Touch' +source=('http://search.mcpan.org/CPAN/authors/id/N/NE/NEILB/File-Touch-0.09.tar.gz') +md5sums=('250dd8951c9a9e6cfccddad04d8096b9') +sha512sums=('f2bd4e53ff1b57d9295e08a6445406bde1cd9e10860450612086c20177542ec3e954043be405e262ea39f331d6b51b3ea21ce3183e8538c046d5799af106d053') +_distdir="File-Touch-0.09" + +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 Makefile.PL + make + ) +} + +check() { + cd "$srcdir/$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + make test + ) +} + +package() { + cd "$srcdir/$_distdir" + make 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: |