wok-next view bird/receipt @ rev 4318

add : BIRD , bird internet routing daemon
author Allan Pinto <allan316@gmail.com>
date Tue Sep 29 14:35:37 2009 +0000 (2009-09-29)
parents
children b758a57c9b07
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="1.1.3"
5 CATEGORY="networking"
6 SHORT_DESC="internet routing daemon"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS=""
9 BUILD_DEPENDS="readline-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://bird.network.cz"
12 WGET_URL="ftp://bird.network.cz/pub/$PACKAGE/$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 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/sbin $fs/usr
30 cp -a $_pkg/etc $fs
31 }