wok view bridge-utils/receipt @ rev 4902

Typo in tazbb
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 11 17:28:21 2010 +0100 (2010-02-11)
parents
children 4273e906522b
line source
1 # SliTaz package receipt.
3 PACKAGE="bridge-utils"
4 VERSION="1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="IEEE 802.1d ethernet bridging‡"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="autoconf automake"
10 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
11 WEB_SITE="http://www.linuxfoundation.org/en/Net:Bridge"
12 WGET_URL="$SF_MIRROR/bridge/files/${PACKAGE}-${VERSION}/${TARBALL}"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 autoconf
20 ./configure --prefix=/usr && \
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/sbin $fs/usr
29 }