wok-stable view perl-core/receipt @ rev 6635

Added fontconfig-dev, freetype-dev, and expat-dev to cairo-dev. Removed the ones add to cairo-dev from gtk+-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 10 13:22:44 2010 +0000 (2010-10-10)
parents 8c3646038b08
children 49e1e0f01970
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-core"
4 VERSION="5.12.2"
5 CATEGORY="development"
6 SHORT_DESC="Minimal Perl interpreter."
7 MAINTAINER="erjo@slitaz.org"
8 SOURCE="perl"
9 WANTED="perl"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.perl.org/"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 _pkg=${WOK}/${WANTED}/${WANTED}-${VERSION}/_pkg
18 mkdir -p $fs/usr/bin
19 cp -a $_pkg/usr/bin/perl${VERSION} $fs/usr/bin/
20 cd $fs/usr/bin
21 ln -s perl${VERSION} perl
22 }
24 # Pre install commands for Tazpkg.
25 # Remove perl link to microperl if any.
26 #
27 pre_install()
28 {
29 echo "Processing pre-install commands..."
30 rm -f $1/usr/bin/perl
31 }