diff options
author | Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> | 2019-10-16 17:32:05 -0400 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> | 2019-10-17 13:45:34 -0400 |
commit | 8afb6ffbf97bc59a6b97d110bf88c9357be5ad83 (patch) | |
tree | 7ce023108734fe7872b54addbb4259050d6a0e0c /system/perl-unicode-linebreak | |
parent | e61f79983d1f626916f5f67e54b9d2ffecf4b2ee (diff) | |
download | packages-8afb6ffbf97bc59a6b97d110bf88c9357be5ad83.tar.gz packages-8afb6ffbf97bc59a6b97d110bf88c9357be5ad83.tar.bz2 packages-8afb6ffbf97bc59a6b97d110bf88c9357be5ad83.tar.xz packages-8afb6ffbf97bc59a6b97d110bf88c9357be5ad83.zip |
system/perl-*: modernise
Diffstat (limited to 'system/perl-unicode-linebreak')
-rw-r--r-- | system/perl-unicode-linebreak/APKBUILD | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/system/perl-unicode-linebreak/APKBUILD b/system/perl-unicode-linebreak/APKBUILD index 5d7d91ea3..5bff8e644 100644 --- a/system/perl-unicode-linebreak/APKBUILD +++ b/system/perl-unicode-linebreak/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-unicode-linebreak +_pkgreal=Unicode-LineBreak +_author=NEZUMI +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=2019.001 _univer=8.0.0 # update this and unicode.org URLs if sombok is ever updated pkgrel=0 @@ -8,33 +12,25 @@ pkgdesc="Perl implementation of the UAX#14 Unicode line-breaking algorithm" url="https://metacpan.org/release/Unicode-LineBreak" arch="all" license="Artistic-1.0-Perl AND GPL-2.0+" -depends="perl perl-mime-charset" +depends="perl-mime-charset" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/N/NE/NEZUMI/Unicode-LineBreak-$pkgver.tar.gz +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz https://www.unicode.org/Public/$_univer/ucd/auxiliary/GraphemeBreakTest.txt https://www.unicode.org/Public/$_univer/ucd/auxiliary/LineBreakTest.txt" -builddir="$srcdir/Unicode-LineBreak-$pkgver" - -prepare() { - cd "$builddir" - default_prepare - cp "$srcdir"/*Test.txt "$builddir"/test-data -} +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" + cp "$srcdir"/*Test.txt "$builddir"/test-data 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 } |