wok annotate bridge-utils/receipt @ rev 4676

Up: tuxtype (1.8.0)
author Claudinei Pereira <claudinei@slitaz.org>
date Tue Dec 29 19:40:17 2009 +0000 (2009-12-29)
parents
children 4273e906522b
rev   line source
erjo@4484 1 # SliTaz package receipt.
erjo@4484 2
erjo@4484 3 PACKAGE="bridge-utils"
erjo@4484 4 VERSION="1.4"
erjo@4484 5 CATEGORY="system-tools"
erjo@4484 6 SHORT_DESC="IEEE 802.1d ethernet bridging‡"
erjo@4484 7 MAINTAINER="erjo@slitaz.org"
erjo@4484 8 DEPENDS=""
erjo@4484 9 BUILD_DEPENDS="autoconf automake"
erjo@4484 10 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
erjo@4484 11 WEB_SITE="http://www.linuxfoundation.org/en/Net:Bridge"
erjo@4484 12 WGET_URL="$SF_MIRROR/bridge/files/${PACKAGE}-${VERSION}/${TARBALL}"
erjo@4484 13
erjo@4484 14
erjo@4484 15 # Rules to configure and make the package.
erjo@4484 16 compile_rules()
erjo@4484 17 {
erjo@4484 18 cd $src
erjo@4484 19 autoconf
erjo@4484 20 ./configure --prefix=/usr && \
erjo@4484 21 make && make DESTDIR=$PWD/_pkg install
erjo@4484 22 }
erjo@4484 23
erjo@4484 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4484 25 genpkg_rules()
erjo@4484 26 {
erjo@4484 27 mkdir -p $fs/usr
erjo@4484 28 cp -a $_pkg/usr/sbin $fs/usr
erjo@4484 29 }
erjo@4484 30