adopt package

This commit is contained in:
Moritz Bunkus
2023-10-08 16:15:33 +02:00
parent 5bfc275c25
commit 934293dba2
2 changed files with 29 additions and 25 deletions

View File

@@ -1,14 +1,14 @@
pkgbase = perl-exporter-lite pkgbase = perl-exporter-lite
pkgdesc = lightweight exporting of functions and variables pkgdesc = lightweight exporting of functions and variables
pkgver = 0.09 pkgver = 0.09
pkgrel = 1 pkgrel = 2
url = https://metacpan.org/release/Exporter-Lite url = https://metacpan.org/release/Exporter-Lite
arch = any arch = any
license = PerlArtistic license = PerlArtistic
license = GPL license = GPL
depends = perl depends = perl
options = !emptydirs options = !emptydirs
source = http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Exporter-Lite-0.09.tar.gz source = https://cpan.metacpan.org/authors/id/N/NE/NEILB/Exporter-Lite-0.09.tar.gz
md5sums = afeceba95b4c393b866a57f4818c6aba sha512sums = fa540b0aba6178031d0448cdd92bdf21226facd0424ca00329eac8b93086f7e53b9f37daf52a53a74b65fa6afe2b2aa236165d4c44e96d63aad19e0764924f92
pkgname = perl-exporter-lite pkgname = perl-exporter-lite

View File

@@ -1,41 +1,45 @@
# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com > # Maintainer: Moritz Bunkus <moritz@bunkus.org>
# Contributor: John D Jones III AKA jnbek <jnbek1972 -_AT_- g m a i l -_Dot_- com>
pkgname='perl-exporter-lite' pkgname='perl-exporter-lite'
pkgver='0.09' pkgver='0.09'
pkgrel='1' pkgrel='2'
pkgdesc="lightweight exporting of functions and variables" pkgdesc="lightweight exporting of functions and variables"
arch=('any') arch=('any')
license=('PerlArtistic' 'GPL') license=('PerlArtistic' 'GPL')
options=('!emptydirs') options=('!emptydirs')
depends=('perl') depends=('perl')
url='https://metacpan.org/release/Exporter-Lite' url='https://metacpan.org/release/Exporter-Lite'
source=('http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Exporter-Lite-0.09.tar.gz') source=("https://cpan.metacpan.org/authors/id/N/NE/NEILB/Exporter-Lite-${pkgver}.tar.gz")
md5sums=('afeceba95b4c393b866a57f4818c6aba') sha512sums=('fa540b0aba6178031d0448cdd92bdf21226facd0424ca00329eac8b93086f7e53b9f37daf52a53a74b65fa6afe2b2aa236165d4c44e96d63aad19e0764924f92')
_distdir="Exporter-Lite-0.09"
prepare_environment() {
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}/Exporter-Lite-${pkgver}"
}
build() { build() {
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ prepare_environment
PERL_AUTOINSTALL=--skipdeps \ /usr/bin/perl Makefile.PL
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ make
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
cd "$srcdir/$_distdir"
/usr/bin/perl Makefile.PL
make
)
} }
check() { check() {
cd "$srcdir/$_distdir" prepare_environment
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" make test
make test
)
} }
package() { package() {
cd "$srcdir/$_distdir" prepare_environment
make install make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete 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: