diff --git a/testing/perl-test-utf8/APKBUILD b/testing/perl-test-utf8/APKBUILD new file mode 100644 index 00000000000..8a3affeaae9 --- /dev/null +++ b/testing/perl-test-utf8/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=perl-test-utf8 +_realname=Test-utf8 +pkgver=1.01 +pkgrel=0 +pkgdesc="A collection of tests useful for dealing with utf8 strings" +url="https://github.com/2shortplanks/Test-utf8" +arch="noarch" +license="PerlArtistic" +depends="" +makedepends="perl-dev perl-module-install" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/M/MA/MARKF/$_realname-$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 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +sha512sums="07dcd5ed98a63f7d96bb0fc629b168773d02bb4c93c5bc44ec60738fc29669794547dfde5913f9de682cd583cf85f4d82b6151398aaebcfec9278525447b9c4e Test-utf8-1.01.tar.gz"