wok view bird/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 3e02d42f429d
children e972234146a1
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="1.3.6"
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 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/etc $fs
35 cp -a $install/var $fs
36 }