wok view b43-fwcutter/receipt @ rev 699

Add: x11vnc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 01 15:15:33 2008 +0000 (2008-05-01)
parents
children 357c9dba020c
line source
1 # SliTaz package receipt.
3 PACKAGE="b43-fwcutter"
4 VERSION="011"
5 CATEGORY="system-tool"
6 SHORT_DESC="Broadcom b43 firmware extractor."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://developer.berlios.de/project/showfiles.php?group_id=4547"
10 WGET_URL="http://bu3sch.de/b43/fwcutter/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 make
17 }
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/bin
23 cp -a $src/b43-fwcutter $fs/usr/bin
24 }
26 # Ensure /lib/firmware exist.
27 post_install()
28 {
29 local root
30 root=$1
31 mkdir -p $root/lib/firmware
32 }