45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
# Description: Perl programming language
|
|
# URL: http://www.perl.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: db, gdbm
|
|
|
|
name=perl
|
|
version=5.8.8
|
|
release=3
|
|
source=(ftp://ftp.perl.org/pub/CPAN/src/$name-$version.tar.gz \
|
|
$name-$version-CVE-2005-3962.patch \
|
|
$name-$version-gcc42.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p4 < $SRC/$name-$version-CVE-2005-3962.patch
|
|
patch -p1 < $SRC/$name-$version-gcc42.patch
|
|
./Configure -des \
|
|
-Dprefix=/usr \
|
|
-Darchname=linux \
|
|
-Dman1ext=1pm \
|
|
-Dman3ext=3pm \
|
|
-Dman1dir=/usr/man/man1 \
|
|
-Dman3dir=/usr/man/man3 \
|
|
-Di_gdbm \
|
|
-Di_db \
|
|
-Duseshrplib=true \
|
|
-Doptimize="$CFLAGS"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
ln -sf perl$version $PKG/usr/bin/perl
|
|
ln -sf c2ph $PKG/usr/bin/pstruct
|
|
ln -sf s2p $PKG/usr/bin/psed
|
|
ln -sf c2ph.1pm $PKG/usr/man/man1/pstruct.1pm
|
|
ln -sf s2p.1pm $PKG/usr/man/man1/psed.1pm
|
|
find $PKG \
|
|
-iname 'TODO*' -or \
|
|
-iname 'Change*' -or \
|
|
-iname 'README*' -or \
|
|
-name '*.bs' -or \
|
|
-name .packlist -or \
|
|
-name perllocal.pod | xargs rm
|
|
find $PKG -depth -empty -exec rmdir {} \;
|
|
chmod -R +w $PKG
|
|
}
|