wok-next diff sip/receipt @ rev 20132
Patch midori for new vala.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 31 15:24:24 2017 +0200 (2017-10-31) |
parents | 2e5434fe0bdb |
children | d5aab818505e |
line diff
1.1 --- a/sip/receipt Mon Mar 16 11:42:13 2015 +0200 1.2 +++ b/sip/receipt Tue Oct 31 15:24:24 2017 +0200 1.3 @@ -1,30 +1,31 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="sip" 1.8 -VERSION="4.16.6" 1.9 +VERSION="4.19.3" 1.10 CATEGORY="development" 1.11 SHORT_DESC="C/C++ Bindings Generator for Python v2 and v3" 1.12 MAINTAINER="allan316@gmail.com" 1.13 LICENSE="GPL2 GPL3" 1.14 WEB_SITE="http://www.riverbankcomputing.com/software/sip/intro" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="$SF_MIRROR/pyqt/$TARBALL" 1.18 1.19 -DEPENDS="python gcc-lib-base" 1.20 BUILD_DEPENDS="python-dev" 1.21 +SPLIT="sip-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 - python configure.py 1.27 - make && 1.28 - make DESTDIR=$DESTDIR install 1.29 + python configure.py && 1.30 + make && make install 1.31 } 1.32 1.33 # Rules to gen a SliTaz package suitable for Tazpkg. 1.34 genpkg_rules() 1.35 { 1.36 - mkdir -p $fs/usr 1.37 - cp -a $install/usr/bin $fs/usr 1.38 - cp -a $install/usr/lib $fs/usr 1.39 + case $PACKAGE in 1.40 + sip) copy @std; DEPENDS="python";; 1.41 + *-dev) copy @dev;; 1.42 + esac 1.43 }