wok view bridge-utils/receipt @ rev 23015

updated libcap, libcap-dev and libcap-pam (2.24 -> 2.33)
author Hans-G?nter Theisgen
date Tue Mar 03 11:11:03 2020 +0100 (2020-03-03)
parents 86d61e110274
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="bridge-utils"
4 VERSION="1.6"
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.xz"
10 WEB_SITE="http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge"
11 WGET_URL="https://mirrors.edge.kernel.org/pub/linux/utils/net/bridge-utils/$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 }