wok view elinks/receipt @ rev 4942

add/improve TAGS k* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 15:48:54 2010 +0000 (2010-02-16)
parents 10d0e80d23ea
children 6e90579538d6
line source
1 # SliTaz package receipt.
3 PACKAGE="elinks"
4 VERSION="0.11.6"
5 CATEGORY="network"
6 SHORT_DESC="Full featured www text browser"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="openssl bzip2 spidermonkey"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://elinks.or.cz"
11 WGET_URL="$WEB_SITE/download/$TARBALL"
12 TAGS="browser"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=$PWD/_pkg/usr --infodir=$PWD/_pkg/usr/share/info \
19 --mandir=$PWD/_pkg/usr/share/man $CONFIGURE_ARGS
20 make
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 strip -s $fs/usr/bin/*
30 }