summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-03-24 16:09:45 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-03-24 16:09:45 (GMT)
commitd0bf508ec661ea3a076720e971536048a6f637ae (patch)
tree8ae0b2c90c84993d0a2428dd6e3bf08fbdda2cae /abs
parentfa15de64ae2055fcd56e4e6d50381d2a0228035d (diff)
downloadlinhes_pkgbuild-d0bf508ec661ea3a076720e971536048a6f637ae.zip
linhes_pkgbuild-d0bf508ec661ea3a076720e971536048a6f637ae.tar.gz
linhes_pkgbuild-d0bf508ec661ea3a076720e971536048a6f637ae.tar.bz2
perl-data-uuid: initial inclusion. dep of zoneminder
Diffstat (limited to 'abs')
-rw-r--r--abs/core/perl_modules/perl-data-uuid/PKGBUILD51
1 files changed, 51 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-data-uuid/PKGBUILD b/abs/core/perl_modules/perl-data-uuid/PKGBUILD
new file mode 100644
index 0000000..a20fbe4
--- /dev/null
+++ b/abs/core/perl_modules/perl-data-uuid/PKGBUILD
@@ -0,0 +1,51 @@
+# CPAN Name : Data-UUID
+# Contributor: Anonymous
+# Generator : CPANPLUS::Dist::Arch 1.30
+
+pkgname='perl-data-uuid'
+pkgver='1.221'
+pkgrel='1'
+pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl>=0')
+makedepends=()
+url='https://metacpan.org/release/Data-UUID'
+source=('http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-UUID-1.221.tar.gz')
+md5sums=('7619929e8fe205a7fb83bc1c29ecbf99')
+sha512sums=('fa40219890f9adeb486a7ff636603d8695d81765ee858e396130100aaba96b524d80eef76e0c06eac2086fe3bb2d26114d94459466d29ddc82a7a7fcb2f5adac')
+_distdir="Data-UUID-1.221"
+
+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: