diff options
Diffstat (limited to 'user/perl-test-utf8')
-rw-r--r-- | user/perl-test-utf8/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/user/perl-test-utf8/APKBUILD b/user/perl-test-utf8/APKBUILD index ee562a170..909e0fa45 100644 --- a/user/perl-test-utf8/APKBUILD +++ b/user/perl-test-utf8/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Dan Theisen <djt@hxx.in> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-utf8 +_pkgreal=Test-utf8 +_author=MARKF +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.01 pkgrel=0 pkgdesc="Handy UTF8 tests" @@ -8,25 +12,21 @@ url="https://metacpan.org/pod/Test::utf8" arch="noarch" license="Artistic-1.0-Perl AND GPL-2.0" depends="perl" -makedepends="perl-dev perl-module-install" -install="" +makedepends="perl-module-install" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/M/MA/MARKF/Test-utf8-$pkgver.tar.gz" -builddir="$srcdir/Test-utf8-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$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 find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |