wok view arora/receipt @ rev 15621

broadcom-wl: run xz in compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 08 11:31:53 2013 +0000 (2013-12-08)
parents a5f6371c3254
children 5d53e8ccbc8d
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 LICENSE="GPL2"
9 WEB_SITE="http://arora.googlecode.com/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/files/$TARBALL"
13 BUILD_DEPENDS="Qt4-dev qmake libsqlite"
14 DEPENDS="libQtGui libQtWebkit libQtDBus libQtXml libQtScript"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 qmake PREFIX="/usr/" &&
21 make $MAKEFLAGS &&
22 make INSTALL_ROOT=$DESTDIR install
23 find $install -type f -name '*.desktop' -exec chmod a-x \{\} \;
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp $src/arora $fs/usr/bin
31 }