blob: c4c10917cfc868a68687cda50864c1f54ac54ca0 (
plain)
1 # Description: Perl interface to allow reading and writing zip/gzip files/buffers
2 # URL: http://search.cpan.org/~pmqs/IO-Compress-Zlib/
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Depends on: p5-compress-raw-zlib p5-io-compress-base
5
6 name=p5-io-compress-zlib
7 version=2.012
8 release=1
9 source=(http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-Zlib-$version.tar.gz)
10
11 build() {
12 cd IO-Compress-Zlib-$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 perllocal.pod -exec rm {} \;
18 find $PKG -depth -type d -empty -exec rm -rf {} \;
19 }
|