blob: 36ce7b2fd1562876e8587b0b4279c85fc8c2ab01 (
plain)
1 # Description: Perl interface to the iconv codeset
2 # URL: http://search.cpan.org/~mpiotr/Text-Iconv-1.4/
3 # Maintainer: James Mills, prologic at shortcircuit dot net dot au
4 #
5 # Depends on: perl
6
7 name=p5-text-iconv
8 version=1.4
9 release=3
10 source=(http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/Text-Iconv-${version}.tar.gz)
11
12 build () {
13 cd Text-Iconv-$version
14
15 perl Makefile.PL
16 make OPTIMIZE="$CFLAGS"
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/lib/perl5/5.8.?
20 find $PKG -name ".packlist" -or -name "*.bs" | xargs rm
21 chown -R root:root $PKG
22 }
|