summaryrefslogtreecommitdiff
path: root/pcr/perl-data-compare
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-05-01 04:11:20 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-05-01 04:11:20 -0300
commit6cbb4856878cd40a98b794d44c499ce24919ba9f (patch)
tree2519e02c824ebe19f49bca9c9e45c7d8542af72a /pcr/perl-data-compare
parentb9c634c914000edcc3faba77b668a883582c386c (diff)
add and update perl-* packages
Diffstat (limited to 'pcr/perl-data-compare')
-rw-r--r--pcr/perl-data-compare/PKGBUILD51
1 files changed, 51 insertions, 0 deletions
diff --git a/pcr/perl-data-compare/PKGBUILD b/pcr/perl-data-compare/PKGBUILD
new file mode 100644
index 000000000..0b302ae9e
--- /dev/null
+++ b/pcr/perl-data-compare/PKGBUILD
@@ -0,0 +1,51 @@
+# Contributor (Arch): John D Jones III <jnbek1972 -_AT_- g m a i l -_Dot_- com>
+# Generator (Arch): CPANPLUS::Dist::Arch 1.28
+# Contributor : Márcio Silva <coadde@parabola.nu>
+
+pkgname='perl-data-compare'
+pkgver='1.25'
+pkgrel='1'
+pkgdesc="compare perl data structures"
+arch=('any')
+license=('GPL2')
+options=('!emptydirs')
+depends=('perl-file-find-rule>=0.1')
+makedepends=()
+url='http://search.mcpan.org/dist/Data-Compare'
+source=("http://search.mcpan.org/CPAN/authors/id/D/DC/DCANTRELL/Data-Compare-$pkgver.tar.gz")
+md5sums=('45d56aa548581d7e4406f665c417d31e')
+sha512sums=('3005dadba1c292770db363fcc951f4158bf1956a994a65afd1b4d631a505854188eefeb3f360afc719977b522014c66a749c7e898c85283de03ef76bec65a44c')
+_distdir="Data-Compare-$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: