[arch-commits] Commit in perl-path-class/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon May 24 10:43:09 UTC 2021
Date: Monday, May 24, 2021 @ 10:43:09
Author: felixonmars
Revision: 944308
archrelease: copy trunk to community-staging-any
Added:
perl-path-class/repos/community-staging-any/
perl-path-class/repos/community-staging-any/PKGBUILD
(from rev 944300, perl-path-class/trunk/PKGBUILD)
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: perl-path-class/repos/community-staging-any/PKGBUILD (from rev 944300, perl-path-class/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2021-05-24 10:43:09 UTC (rev 944308)
@@ -0,0 +1,48 @@
+# Packager: Justin "juster" Davis <jrcd83 at gmail.com>
+
+pkgname=perl-path-class
+pkgver=0.37
+pkgrel=7
+pkgdesc="Cross-platform path specification manipulation"
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl')
+makedepends=('perl-module-build')
+url="https://search.cpan.org/dist/Path-Class"
+source=("https://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Path-Class-${pkgver}.tar.gz")
+md5sums=('13e6db714f6d5a0e62ca1c4a7fc4d0f3')
+
+build()
+(
+ export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+ PERL_AUTOINSTALL=--skipdeps \
+ PERL_MM_OPT="INSTALLDIRS=vendor" \
+ PERL_MB_OPT="--installdirs vendor" \
+ MODULEBUILDRC=/dev/null
+
+ cd Path-Class-${pkgver}
+ /usr/bin/perl Build.PL
+ ./Build
+)
+
+check()
+(
+ export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+ cd Path-Class-${pkgver}
+ ./Build test
+)
+
+package() {
+ export PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
+ PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'"
+
+ cd Path-Class-${pkgver}
+ ./Build install
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list