diff options
author | Erich Eckner <git@eckner.net> | 2016-04-05 15:11:38 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-04-05 15:11:38 +0200 |
commit | ca2d72419aa54977cc363c1bd2fd2af00a100ac5 (patch) | |
tree | 88de24a41ff064f5ef3694a9617d82284ab81ac0 | |
parent | 022fbe72230c9831d3672a2969fb6f42d541477b (diff) | |
download | archlinuxewe-ca2d72419aa54977cc363c1bd2fd2af00a100ac5.tar.xz |
perl-file-countlines neu
-rw-r--r-- | perl-file-countlines/.SRCINFO | 17 | ||||
-rw-r--r-- | perl-file-countlines/PKGBUILD | 46 |
2 files changed, 63 insertions, 0 deletions
diff --git a/perl-file-countlines/.SRCINFO b/perl-file-countlines/.SRCINFO new file mode 100644 index 000000000..972facec3 --- /dev/null +++ b/perl-file-countlines/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = perl-mixin-linewise + pkgdesc = write your linewise code for handles; this does the rest + pkgver = 0.106 + pkgrel = 1 + url = http://search.mcpan.org/dist/Mixin-Linewise + arch = any + license = PerlArtistic + license = GPL + depends = perl-perlio-utf8-strict + depends = perl-sub-exporter + options = !emptydirs + source = http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Mixin-Linewise-0.106.tar.gz + md5sums = d4699cde97d8286f44624c1d19663334 + sha512sums = 976b139528f728c36ed865fd31430084f24522fc3fada3c4be1beaced2f05ffce09a2e996a3f4e1aade91e3264df81d8de2eafe56ec806d5d3f22446ce6d45c8 + +pkgname = perl-mixin-linewise + diff --git a/perl-file-countlines/PKGBUILD b/perl-file-countlines/PKGBUILD new file mode 100644 index 000000000..4cbeb8afe --- /dev/null +++ b/perl-file-countlines/PKGBUILD @@ -0,0 +1,46 @@ +pkgname='perl-file-countlines' +pkgver='0.0.3' +pkgrel='1' +pkgdesc="efficiently count the number of line breaks in a file." +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl-perlio-utf8-strict' 'perl-sub-exporter') +makedepends=() +url='http://search.mcpan.org/dist/Mixin-Linewise' +source=("http://search.cpan.org/CPAN/authors/id/M/MO/MORITZ/File-CountLines-v${pkgver}.tar.gz") +sha512sums=('84adcb4b8ba24f4ea2f23fe4df6da925cdc0f5ff5354a509af50398dfbe58114af7e940f358d4fbcae6acc1af5229e80d0f337d7cbcdaeafb15e856514dcfa41') +_distdir="File-CountLines-v${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 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: |