summaryrefslogtreecommitdiff
path: root/community-testing/perl-clone/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-02 10:50:51 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-02 10:50:51 -0300
commit901d121a0b559ed0c285f6cf7daebd0e0081a327 (patch)
tree814faf33f5ac64cc28c07e45f56c240c93605746 /community-testing/perl-clone/PKGBUILD
parentd0fae3a9b2c0de7490049611767dc2a3d6e94899 (diff)
parente7b9c9697e6a50c3b9e78941fa95ba11c716d238 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: testing/mesa/PKGBUILD
Diffstat (limited to 'community-testing/perl-clone/PKGBUILD')
-rw-r--r--community-testing/perl-clone/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community-testing/perl-clone/PKGBUILD b/community-testing/perl-clone/PKGBUILD
new file mode 100644
index 000000000..ede090293
--- /dev/null
+++ b/community-testing/perl-clone/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: François Charette <firmicus ατ gmx δοτ net>
+# Contributor: Alex Dioso <adioso->gmail*com>
+
+pkgname=perl-clone
+pkgver=0.31
+pkgrel=3
+pkgdesc='Recursive copy of nested objects.'
+arch=('i686' 'x86_64')
+url='http://search.cpan.org/~RDF/Clone'
+license=('GPL' 'PerlArtistic')
+depends=('perl>=5.10.0')
+options=('!emptydirs')
+source=("http://www.cpan.org/authors/id/R/RD/RDF/Clone-${pkgver}.tar.gz")
+md5sums=('65f34e7280d7b7dfb72ab6224e5767f5')
+
+build() {
+ cd Clone-${pkgver}
+
+ PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+ make
+}
+
+package() {
+ cd Clone-${pkgver}
+
+ make DESTDIR=${pkgdir} install
+
+ find ${pkgdir} -name '.packlist' -delete
+ find ${pkgdir} -name '*.pod' -delete
+}