wok view links/receipt @ rev 1579

gnumeric: depends on libgio
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 16 06:05:31 2008 +0000 (2008-10-16)
parents ab8b4e288bc8
children fa67ff8d6e28
line source
1 # SliTaz package receipt.
3 PACKAGE="links"
4 VERSION="2.1pre36"
5 CATEGORY="network"
6 SHORT_DESC="Light and speed web browser using Ncurses or Xlib."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses openssl"
9 BUILD_DEPENDS="ncurses-dev openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://links.twibright.com/"
12 WGET_URL="http://links.twibright.com/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 --without-directfb \
23 --without-bzip2 \
24 --enable-graphics \
25 $CONFIGURE_ARGS
26 make
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/pixmaps
34 cp -a $_pkg/usr/bin $fs/usr
35 cp $src/graphics/links.xpm $fs/usr/share/pixmaps
36 }