# HG changeset patch # User Allan Pinto # Date 1254234937 0 # Node ID fa2a91c3bfa662897978f09c30003a7472be4c4c # Parent f141df72e641716e5eec4c2f4aef717a54871d7b add : BIRD , bird internet routing daemon diff -r f141df72e641 -r fa2a91c3bfa6 bird/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bird/receipt Tue Sep 29 14:35:37 2009 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="bird" +VERSION="1.1.3" +CATEGORY="networking" +SHORT_DESC="internet routing daemon" +MAINTAINER="allan316@gmail.com" +DEPENDS="" +BUILD_DEPENDS="readline-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://bird.network.cz" +WGET_URL="ftp://bird.network.cz/pub/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/sbin $fs/usr + cp -a $_pkg/etc $fs +} +