blob: e552c2915fed752af1c7b45627fd649d7b0633f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Programe Perl pour la création, la manipulation et l'écriture des fichiers d'archive Zip
# URL: http://search.cpan.org/~adamk/Archive-Zip-1.23/lib/Archive/Zip.pm
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=p5-archive-zip
version=1.31_04
release=1
source=(http://cpan.org/authors/id/A/AD/ADAMK/Archive-Zip-$version.tar.gz)
build() {
cd Archive-*
perl Makefile.PL
make OPTIMIZE="${CFLAGS}"
make DESTDIR=${PKG} install
find ${PKG} -name perllocal.pod -exec rm {} \;
}
|