initial import
This commit is contained in:
34
perl-extutils-config/PKGBUILD
Normal file
34
perl-extutils-config/PKGBUILD
Normal file
@@ -0,0 +1,34 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=perl-extutils-config
|
||||
_pkgname=ExtUtils-Config
|
||||
pkgver=0.008
|
||||
pkgrel=2
|
||||
pkgdesc="ExtUtils::Config - A wrapper for perl's configuration"
|
||||
arch=('any')
|
||||
license=('GPL-1')
|
||||
url='https://search.cpan.org/dist/ExtUtils-Config/'
|
||||
options=(!emptydirs)
|
||||
depends=('perl')
|
||||
source=("https://search.cpan.org/CPAN/authors/id/L/LE/LEONT/${_pkgname}-${pkgver}.tar.gz")
|
||||
sha512sums=('7775e2212b4605e60559c7e63604b8f2b4c56f4846e64f9f4454f3f5d0a7a21f618143e6c61eafabf5d9ee9bca8f722c04aedeaf9c51f59924de68c272b86db2')
|
||||
|
||||
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}/${_pkgname}-${pkgver}"
|
||||
/usr/bin/perl Makefile.PL
|
||||
make
|
||||
)
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${_pkgname}-${pkgver}"
|
||||
make install
|
||||
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
|
||||
install -Dm644 LICENSE -t $pkgdir/usr/share/licenses/$pkgname
|
||||
}
|
||||
Reference in New Issue
Block a user