summaryrefslogtreecommitdiff
path: root/community/perl-data-dumper
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/perl-data-dumper
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/perl-data-dumper')
-rw-r--r--community/perl-data-dumper/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/perl-data-dumper/PKGBUILD b/community/perl-data-dumper/PKGBUILD
new file mode 100644
index 000000000..2f96b2588
--- /dev/null
+++ b/community/perl-data-dumper/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=perl-data-dumper
+pkgver=2.145
+pkgrel=2
+pkgdesc="stringified perl data structures, suitable for both printing and eval"
+arch=(i686 x86_64)
+license=('GPL' 'PerlArtistic')
+url="http://search.cpan.org/dist/Data-Dumper/"
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Data-Dumper-$pkgver.tar.gz)
+md5sums=('b773c875afcca866faf8481adc3464b0')
+
+build() {
+ cd $srcdir/Data-Dumper-${pkgver}
+ perl Makefile.PL INSTALLDIRS=vendor
+ make
+}
+
+package() {
+ cd $srcdir/Data-Dumper-${pkgver}
+ make install DESTDIR=$pkgdir
+ find $pkgdir -name perllocal.pod -delete
+ find $pkgdir -name .packlist -delete
+}