milis/talimatname/temel/perl/talimat

59 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: The Perl package contains the Practical Extraction and Report Language.
# URL: http://www.perl.org/
# Paketçi: milisarge
# Gerekler:
isim=perl
surum=5.22.1
devir=1
kaynak=(http://ftp.funet.fi/pub/CPAN/src/$isim-$surum.tar.bz2)
derle()
{
cd $isim-$surum
if [ "`uname -m`" == "x86_64" ]; then
_ARCH="-Dcccdlflags='-fPIC'"
else
_ARCH=""
fi
echo "127.0.0.1 localhost $(hostname)" > /etc/hosts
export BUILD_ZLIB=False
export BUILD_BZIP2=0
sh Configure -des -Dusethreads \
-Dprefix=/usr -Duseshrplib -Dscriptdir=/usr/bin \
-Dvendorbin=/usr/bin -Dsitebin=/usr/bin \
-Dvendorprefix=/usr -Dinc_version_list=none \
-Darchlib=/usr/lib/share/perl5/base \
-Dprivlib=/usr/lib/share/perl5/base \
-Dvendorlib=/usr/lib/share/perl5/vendor \
-Dvendorarch=/usr/lib/perl5/vendor \
-Dsitelib=/usr/lib/perl5/site \
-Dsitearch=/usr/lib/perl5/site \
-Dman1dir=/usr/share/man/man1 \
-Dman3dir=/usr/share/man/man3 \
-Dpager="/usr/bin/less isR" ${_ARCH}
make
# Only when we are building a new base
if [ -L /tools ]; then
make -k test || true
fi
make DESTDIR=$PKG install
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
unset BUILD_ZLIB BUILD_BZIP2
}