wok-next view bird/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents 4273e906522b
children 59009b1c6878
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="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"
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 }