wok view bird/receipt @ rev 4677

Up: intltool (0.40.6)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Dec 30 10:26:31 2009 +0100 (2009-12-30)
parents 885440c73b33
children c3bbc96922bb
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="1.1.5"
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 --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/sbin $fs/usr
31 cp -a $_pkg/etc $fs
32 cp -a $_pkg/var $fs
33 }