# HG changeset patch # User Allan Pinto # Date 1244229943 0 # Node ID 088e7475acf17239fd4b65ff85043064d9d27da0 # Parent d7cd7e6a63389c771950cd2d9c608f7e9d606e13 add sip for PyQt diff -r d7cd7e6a6338 -r 088e7475acf1 sip/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sip/receipt Fri Jun 05 19:25:43 2009 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="sip" +VERSION="4.8" +CATEGORY="development" +SHORT_DESC="needed for PyQt" +MAINTAINER="allan316@gmail.com" +DEPENDS="python" +BUILD_DEPENDS="python-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.riverbankcomputing.co.uk" +WGET_URL="$WEB_SITE/static/Downloads/sip4/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python configure.py + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + strip -s $fs/usr/bin/* +} +