wok-next view bird/receipt @ rev 20364

Up palemoon (27.6.1)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Nov 24 05:32:16 2017 +0100 (2017-11-24)
parents eb8067417980
children 757d032c55c7
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="1.6.3"
5 CATEGORY="network"
6 SHORT_DESC="internet routing daemon"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://bird.network.cz"
11 WGET_URL="ftp://bird.network.cz/pub/$PACKAGE/$TARBALL"
12 TAGS="route routing daemon"
14 DEPENDS="readline ncurses"
15 BUILD_DEPENDS="flex bison readline-dev ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/var $fs
35 }