diff options
Diffstat (limited to 'system/perl-authen-sasl/APKBUILD')
-rw-r--r-- | system/perl-authen-sasl/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/system/perl-authen-sasl/APKBUILD b/system/perl-authen-sasl/APKBUILD new file mode 100644 index 000000000..611d30fa7 --- /dev/null +++ b/system/perl-authen-sasl/APKBUILD @@ -0,0 +1,36 @@ +# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +pkgname=perl-authen-sasl +_realname=Authen-SASL +pkgver=2.16 +pkgrel=2 +pkgdesc="SASL authentication framework for Perl" +url="http://search.cpan.org/dist/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= +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-$pkgver.tar.gz" +builddir="$srcdir/$_realname-$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 +} + +sha512sums="d472b8b07b8915e65a219c0a40a7b6f25ca4fb767df301f426224b8f6ebf24d66fcb4422a1f421c39631e84585af06f6c64e41abe11e1e505d03e43a9f86bd6f Authen-SASL-2.16.tar.gz" |