wok view PyQt-x11-gpl/receipt @ rev 23957

Add ncat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 28 11:26:35 2020 +0000 (2020-09-28)
parents 2e5434fe0bdb
children a3b6dd3aac6f
line source
1 # SliTaz package receipt.
3 PACKAGE="PyQt-x11-gpl"
4 SOURCE="PyQt4_gpl_x11"
5 VERSION="4.12.3"
6 CATEGORY="development"
7 SHORT_DESC="PyQt"
8 MAINTAINER="allan316@gmail.com"
9 LICENSE="GPL"
10 WEB_SITE="http://www.riverbankcomputing.com/software/pyqt/intro"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/pyqt/$TARBALL"
14 DEPENDS="python libQtDesigner libQtScript libQtCore libQtGui \
15 libQtWebkit libQtXml libQtNetwork libQtSvg libQtSql \
16 libQtDBus libQtClucene sip gcc-lib-base dbus"
17 BUILD_DEPENDS="python-dev sip-dev Qt4-dev qmake"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 sed -i 's|sys.stdin.readline()|"yes" # &|' configure.py
23 python configure.py
24 make $MAKEFLAGS &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 cp -a $install/usr/share $fs/usr
35 }