blob: bcc6b8915327ce624a528f6f6ca65ea250159998 (
plain)
1 # Description: Emulate file interface for in-core strings
2 # URL: http://search.cpan.org/~gaas/IO-String/
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Packager: Younes Hafri, ycrux at club-internet dot fr
5 # Depends on:
6
7 name=p5-io-string
8 version=1.08
9 release=1
10 source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-$version.tar.gz)
11
12 build() {
13 cd IO-String-$version
14 perl Makefile.PL
15 make OPTIMIZE="$CFLAGS"
16 make DESTDIR=$PKG install
17 find $PKG -name .packlist -exec rm {} \;
18 find $PKG -name perllocal.pod -exec rm {} \;
19 find $PKG -depth -type d -empty -exec rm -rf {} \;
20 }
|