wok-next view python/receipt @ rev 6616
Fixed mercurial. Need pyconfig.h for mercurial to work. So i added this to python package since pyconfig.h maybe need for more python programs. I also removed all .pyc and .pyo files from python. Removed about 4mb from python by doing that.
| author | Christopher Rogers <slaxemulator@gmail.com> | 
|---|---|
| date | Sat Oct 09 20:49:19 2010 +0000 (2010-10-09) | 
| parents | 5921dc28d8c6 | 
| children | 15b3f14c3001 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="python"
     4 VERSION="2.7"
     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 BUILD_DEPENDS="$DEPENDS readline-dev openssl-dev ncursesw-dev"
    11 TARBALL="$SOURCE-$VERSION.tar.bz2"
    12 WEB_SITE="http://www.python.org/"
    13 WGET_URL="http://www.python.org/ftp/python/$VERSION/$TARBALL"
    15 # Rules to configure and make the package.
    16 compile_rules()
    17 {
    18 	cd $src
    19 	./configure --enable-shared --with-ncurses \
    20 	--prefix=/usr --infodir=/usr/share/info \
    21 	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    22 	make &&
    23 	make DESTDIR=$PWD/_pkg install
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr/include/${PACKAGE}${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}${VERSION}/pyconfig.h $fs/usr/include/${PACKAGE}${VERSION}
    34 	find $fs/usr/lib/${PACKAGE}${VERSION} -name "*.pyc" -delete
    35 	find $fs/usr/lib/${PACKAGE}${VERSION} -name "*.pyo" -delete
    36 	rm -f $fs/usr/bin/*-config
    37 	strip -s $fs/usr/bin/* 2>/dev/null
    38 	strip -s $fs/usr/lib/*.so* 2>/dev/null
    40 	# Python can be symlink to python${VERSION:0:3} ???
    41 	#cd $fs/usr/bin
    42 	#rm python && ln -s python${VERSION:0:3} python
    43 }