wok view python/receipt @ rev 10359

youtube-dl: Use $SOURCE_REPOSITORY.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 17:45:43 2011 +0000 (2011-05-22)
parents 9e8cd7598a81
children 1596b5b5bd81
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 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 python_version=${VERSION:0:3}
29 mkdir -p $fs/usr/include/${PACKAGE}$python_version
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 # needed for mericurial to work now
33 cp -a $_pkg/usr/include/${PACKAGE}$python_version/pyconfig.h \
34 $fs/usr/include/${PACKAGE}$python_version
35 rm -f $fs/usr/bin/*-config
37 # Python can be symlink to python$python_version ???
38 #cd $fs/usr/bin
39 #rm python && ln -s python$python_version python
40 }