wok view sip/receipt @ rev 14259

Add extundelete
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 29 09:07:22 2013 +0100 (2013-03-29)
parents 5e81a7b53822
children 3b4e4318134e
line source
1 # SliTaz package receipt.
3 PACKAGE="sip"
4 VERSION="4.14.3"
5 CATEGORY="development"
6 SHORT_DESC="needed for PyQt"
7 MAINTAINER="allan316@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.riverbankcomputing.co.uk"
10 WGET_URL="http://sourceforge.net/projects/pyqt/files/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
12 DEPENDS="python gcc-lib-base"
13 BUILD_DEPENDS="python-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python configure.py
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }