wok view python/receipt @ rev 10233

Up: wireshark to 1.4.6.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 00:30:15 2011 +0000 (2011-05-21)
parents 02bbaa9d12ba
children 686120919f40
line source
1 # SliTaz package receipt.
3 PACKAGE="python"
4 VERSION="2.7.1"
5 CATEGORY="development"
6 SHORT_DESC="The Python programming language."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="Python"
9 DEPENDS="openssl bzlib readline sqlite zlib ncursesw"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.python.org/"
12 WGET_URL="http://www.python.org/ftp/python/$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 # Fix urllib Security Vulnerability
19 # http://blog.python.org/2011/04/urllib-security-vulnerability-fixed.html
20 patch -Np1 -i $stuff/CVE-2011-1521.patch
21 ./configure --enable-shared --with-ncurses &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 python_version=${VERSION:0:3}
30 mkdir -p $fs/usr/include/${PACKAGE}$python_version
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 # needed for mericurial to work now
34 cp -a $_pkg/usr/include/${PACKAGE}$python_version/pyconfig.h \
35 $fs/usr/include/${PACKAGE}$python_version
36 rm -f $fs/usr/bin/*-config
38 # Python can be symlink to python$python_version ???
39 #cd $fs/usr/bin
40 #rm python && ln -s python$python_version python
41 }