wok view midori/receipt @ rev 1113

iw: put all file a a real dir so we can clean
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jul 19 21:19:53 2008 +0200 (2008-07-19)
parents a66a303cbe1d
children a412fbf20218
line source
1 # SliTaz package receipt.
3 PACKAGE="midori"
4 VERSION="0.0.18"
5 CATEGORY="x-window"
6 SHORT_DESC="Light Web Browse using GTK+/WebKit."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="libsexy webkit-r icu curl openssl"
10 BUILD_DEPENDS="libsexy-dev webkit-r-dev icu-dev curl-dev"
11 WEB_SITE="http://software.twotoasts.de/?page=midori"
12 WGET_URL="http://software.twotoasts.de/media/midori/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 chmod +x install-sh
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }