blob: c07a94749709ec0eaf342219db178d44394be253 (
plain)
1 # Description: Perl interface to iconv() codeset conversion function
2 # URL: http://search.cpan.org/~mpiotr/Text-Iconv/
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Depends on:
5
6 name=p5-text-iconv
7 version=1.7
8 release=3
9 source=(http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/Text-Iconv-$version.tar.gz)
10
11 build() {
12 cd Text-Iconv-$version
13 perl Makefile.PL
14 make OPTIMIZE="$CFLAGS"
15 make DESTDIR=$PKG install
16 find $PKG -name .packlist -exec rm {} \;
17 find $PKG -name "*.bs" -exec rm {} \;
18 find $PKG -name perllocal.pod -exec rm {} \;
19 find $PKG -depth -type d -empty -exec rm -rf {} \;
20 }
|