diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-10-17 22:52:43 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-10-17 22:52:43 +0000 |
commit | 3401220890b38e9d9bd3c50bed2a88f98bc8e645 (patch) | |
tree | 3533c905623209cb1525c2c1a935d710b18d7efc /system/perl-authen-sasl/APKBUILD | |
parent | c665adb6aa1d2253d650989bd6f72ceca79747d1 (diff) | |
parent | b163eb1b88e25226d5a45816367522bffac0a978 (diff) | |
download | packages-3401220890b38e9d9bd3c50bed2a88f98bc8e645.tar.gz packages-3401220890b38e9d9bd3c50bed2a88f98bc8e645.tar.bz2 packages-3401220890b38e9d9bd3c50bed2a88f98bc8e645.tar.xz packages-3401220890b38e9d9bd3c50bed2a88f98bc8e645.zip |
Merge branch 'perl.authors' into 'master'
Modernise Perl packages
See merge request adelie/packages!367
Diffstat (limited to 'system/perl-authen-sasl/APKBUILD')
-rw-r--r-- | system/perl-authen-sasl/APKBUILD | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/system/perl-authen-sasl/APKBUILD b/system/perl-authen-sasl/APKBUILD index b894d9dee..74afc7ab0 100644 --- a/system/perl-authen-sasl/APKBUILD +++ b/system/perl-authen-sasl/APKBUILD @@ -1,6 +1,9 @@ # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-authen-sasl -_realname=Authen-SASL +_pkgreal=Authen-SASL +_author=GBARR +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=2.16 pkgrel=2 pkgdesc="SASL authentication framework for Perl" @@ -8,28 +11,22 @@ url="https://metacpan.org/release/Authen-SASL" arch="noarch" license="GPL-2.0-only OR Artistic-1.0-Perl" depends="perl perl-digest-hmac" -makedepends="perl-dev perl-module-install" -install= +makedepends="perl-module-install" subpackages="$pkgname-doc" -source="https://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-$pkgver.tar.gz" -builddir="$srcdir/$_realname-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/Authen-SASL-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } check() { - cd "$builddir" make test } package() { - cd "$builddir" make DESTDIR="$pkgdir" install - - # creates file collision among perl modules find "$pkgdir" -name perllocal.pod -delete } |