wok view sip/receipt @ rev 6814

merge
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 14:13:51 2010 +0000 (2010-10-19)
parents bc5b14d1f2df
children 1da4283ce2c7
line source
1 # SliTaz package receipt.
3 PACKAGE="sip"
4 VERSION="4.11.1"
5 CATEGORY="development"
6 SHORT_DESC="needed for PyQt"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="python gcc-lib-base"
9 BUILD_DEPENDS="python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.riverbankcomputing.co.uk"
12 WGET_URL="$WEB_SITE/static/Downloads/sip4/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python configure.py
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 strip -s $fs/usr/bin/*
30 }