# $Id: PKGBUILD 49939 2009-08-17 00:31:20Z kevin $ # Maintainer: James Rayner # Contributor: Andrew Simmons pkgname=perl-unicode-string _realname=Unicode-String pkgver=2.09 pkgrel=4 pkgdesc="String of Unicode characters for perl (UCS2/UTF16)" arch=('i686' 'x86_64') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.10.0') options=(!emptydirs) source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz) md5sums=('553e68e603723bf7c631f8701ab0d678') build() { cd ${srcdir}/${_realname}-${pkgver} # install module in vendor directories. PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 make || return 1 make install DESTDIR=${pkgdir} || return 1 # remove perllocal.pod and .packlist find ${pkgdir} -name perllocal.pod -delete find ${pkgdir} -name .packlist -delete }