wok-stable view bird/receipt @ rev 4472
linux .config (some changes similar to 2.6.29.3); add a modules check to receipt
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Mon Nov 09 14:00:35 2009 +0000 (2009-11-09) |
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 }