wok view netsurf/receipt @ rev 16852

netsurf:once more
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun Jul 13 03:59:57 2014 +0300 (2014-07-13)
parents 4ec7248ecd3a
children ac98f6b9344e
line source
1 # SliTaz package receipt.
3 PACKAGE="netsurf"
4 VERSION="3.1"
5 CATEGORY="network"
6 SHORT_DESC="A simple, fast and light web browser using GTK."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-all-$VERSION.tar.gz"
10 WEB_SITE="http://www.netsurf-browser.org/"
11 WGET_URL="http://download.netsurf-browser.org/netsurf/releases/source-full/$TARBALL"
12 TAGS="browser"
14 DEPENDS="gtk+ libssl libpng jpeg lcms libparserutils hubbub libnsgif \
15 libcurl libglade librsvg libgsf libcss libmng zlib libxml2"
16 BUILD_DEPENDS="$DEPENDS gtk+-dev libglade-dev openssl-dev libpng-dev \
17 jpeg-dev lcms-dev re2c lemon libparserutils-dev hubbub-dev libnsgif-dev \
18 librsvg-dev curl-dev pango-dev libcss-dev libwapcaplet-dev libmng-dev \
19 zlib-dev libxml2-dev libcroco expat-dev gperf flex bison \
20 perl-html-parser perl-html-tagset"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 #mv netsurf $PACKAGE-$VERSION 2>/dev/null
26 cd $src
27 cp -a $stuff/Makefile.config .
29 # Fix install target
30 #sed -i 's/cp -vRL/cp -RL/' Makefile
31 #sed -i 's/cp -v/cp /' Makefile
32 make install DESTDIR=$DESTDIR PREFIX=/usr
33 #make install DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share \
40 $fs/usr/lib/netsurf
41 ##cp -a $install/bin $fs/usr
42 cp -a $install/usr/bin $fs/usr
43 cp -a $install/usr/share/netsurf $fs/usr/share
44 ##cp -a $install/share/netsurf $fs/usr/share
46 # Remove files to save some space
47 rm -rf $fs/usr/share/netsurf/docs
48 rm -rf $fs/usr/share/netsurf/*.xpm
49 rm -rf $fs/usr/share/netsurf/license
50 # Webhome
51 cp -a stuff/webhome $fs/usr/share
52 chown -R root.root $fs
53 }