blob: a3484551998684289856a81e0846dab87dfc78bb (
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=2014.06
pkgrel=1
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=('c908890e6a00f4203da5d4a5d6060586')
|