wok view bird/receipt @ rev 9259

Use SOURCE to define tarball properly (thanks Godane)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 15 03:39:52 2011 +0100 (2011-03-15)
parents 395ec8205cff
children fc9f1fc039d7
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="1.1.5"
5 CATEGORY="network"
6 SHORT_DESC="internet routing daemon"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="readline ncurses"
9 BUILD_DEPENDS="flex bison"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://bird.network.cz"
12 WGET_URL="ftp://bird.network.cz/pub/$PACKAGE/$TARBALL"
13 TAGS="route routing daemon"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make && 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/sbin $fs/usr
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/var $fs
34 }