wok view bird/receipt @ rev 22937

updated hunspell and hunspell-dev again (1.3.3 -> 1.7.0)
author Hans-G?nter Theisgen
date Thu Feb 27 07:35:13 2020 +0100 (2020-02-27)
parents e972234146a1
children c21515fa6481
line source
1 # SliTaz package receipt.
3 PACKAGE="bird"
4 VERSION="2.0.7"
5 CATEGORY="network"
6 TAGS="route routing daemon"
7 SHORT_DESC="Internet routing daemon."
8 MAINTAINER="allan316@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://bird.network.cz"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="ftp://bird.network.cz/pub/$PACKAGE/$TARBALL"
15 DEPENDS="ncurses readline"
16 BUILD_DEPENDS="bison flex ncurses-dev readline-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
35 cp -a $install/usr/sbin $fs/usr
36 cp -a $install/etc $fs
37 cp -a $install/var $fs
38 }