wok-undigest view Qt4-qca/receipt @ rev 213

ovzkernel-i686: add gztazmod
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jan 04 07:32:18 2011 +0100 (2011-01-04)
parents
children 7ba1089a196e
line source
1 # SliTaz package receipt.
3 NAME="qca"
4 PACKAGE="Qt4-$NAME"
5 MAJORVERSION="2.0"
6 VERSION="2.0.2"
7 CATEGORY="development"
8 SHORT_DESC="The Qt Cryptographic Architecture (QCA)."
9 MAINTAINER="ben@seawolfsanctuary.com"
10 DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \
11 libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \
12 libQtOpenGL libQtSql libQtWebkit"
13 BUILD_DEPENDS="xorg-libX11-dev dbus-dev Qt4-dev slitaz-toolchain"
14 TARBALL="$NAME-$VERSION.tar.bz2"
15 WEB_SITE="http://delta.affinix.com/$NAME"
16 WGET_URL="http://delta.affinix.com/download/$NAME/$MAJORVERSION/$TARBALL"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $NAME-$VERSION
23 chmod +x configure
24 ./configure \
25 --prefix=/usr \
26 --disable-tests && \
27 make -j4 && make DESTDIR=$_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 for DIR in bin lib include ; do
35 cp -a $WOK/$PACKAGE/$NAME-$VERSION/$DIR $fs/usr
36 done
38 # Copy .desktop file:
39 # cp -a $WOK/$PACKAGE/stuff/* $fs/usr
40 }