wok view bridge-utils/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents eb8067417980
children 14e284e071e0
line source
1 # SliTaz package receipt.
3 PACKAGE="bridge-utils"
4 VERSION="1.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="IEEE 802.1d ethernet bridging"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge"
11 WGET_URL="$SF_MIRROR/bridge/$TARBALL"
12 TAGS="ethernet bridge"
14 BUILD_DEPENDS="automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoconf
20 ./configure --prefix=/usr &&
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/sbin $fs/usr
29 }
31 post_remove()
32 {
33 ln -s /bin/busybox "$1/usr/sbin/brctl"
34 }