blob: cb858ad8108cbda7a3205fbedc4d6671c82faca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Contributor (Arch): Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt dot de>
# Contributor: Márcio Silva <coadde@parabola.nu>
pkgname=perl-unicode-gcstring
pkgver=2015.12
pkgrel=2
pkgdesc="Unicode::GCString - String as Sequence of UAX #29 Grapheme Clusters"
arch=('any')
url="http://search.cpan.org/dist/Unicode-LineBreak"
license=('GPL2')
depends=('perl' 'perl-mime-charset')
options=(!emptydirs !zipman)
source=("http://search.cpan.org/CPAN/authors/id/N/NE/NEZUMI/Unicode-LineBreak-$pkgver.tar.gz")
build() {
cd "$srcdir/Unicode-LineBreak-$pkgver"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL
make
}
package() {
cd "$srcdir/Unicode-LineBreak-$pkgver"
make DESTDIR=$pkgdir install
}
md5sums=('44d8d9291f90fb8c3359d37fcf00bee5')
|