wok-current diff bridge-utils/receipt @ rev 4930
usb device rule should be called before udev default rules
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Tue Feb 16 09:48:42 2010 +0000 (2010-02-16) |
parents | |
children | 4273e906522b |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bridge-utils/receipt Tue Feb 16 09:48:42 2010 +0000 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="bridge-utils" 1.7 +VERSION="1.4" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="IEEE 802.1d ethernet bridging‡" 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="" 1.12 +BUILD_DEPENDS="autoconf automake" 1.13 +TARBALL="${PACKAGE}-${VERSION}.tar.gz" 1.14 +WEB_SITE="http://www.linuxfoundation.org/en/Net:Bridge" 1.15 +WGET_URL="$SF_MIRROR/bridge/files/${PACKAGE}-${VERSION}/${TARBALL}" 1.16 + 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + autoconf 1.23 + ./configure --prefix=/usr && \ 1.24 + make && make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $_pkg/usr/sbin $fs/usr 1.32 +} 1.33 +