wok view arora/receipt @ rev 15044

Qt4-qca-ossl: no libqca-ossl.so.debug
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 12 16:28:51 2013 +0000 (2013-08-12)
parents a7b54d88ae54
children f4c22f009037
line source
1 # SliTaz package receipt.
3 PACKAGE="arora"
4 VERSION="0.11.0"
5 CATEGORY="network"
6 SHORT_DESC="A cross-platform Qt4 WebKit browser"
7 MAINTAINER="devl547@gmail.com"
8 WEB_SITE="http://arora.googlecode.com/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$WEB_SITE/files/$TARBALL"
12 BUILD_DEPENDS="Qt4-dev qmake libsqlite"
13 DEPENDS="libQtGui libQtWebkit libQtDBus libQtXml libQtScript"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 qmake PREFIX="/usr/" &&
20 make $MAKEFLAGS &&
21 make INSTALL_ROOT=$DESTDIR install
22 find $install -type f -name '*.desktop' -exec chmod a-x \{\} \;
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp $src/arora $fs/usr/bin
30 }