wok annotate rfkill/receipt @ rev 15693

linux-lxc: modify post_install() for update /etc/fstab
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 08:40:56 2013 +0100 (2013-12-21)
parents 09a5a7538ed7
children fa39e0a3612e
rev   line source
slaxemulator@9313 1 # SliTaz package receipt.
slaxemulator@9313 2
slaxemulator@9313 3 PACKAGE="rfkill"
slaxemulator@9313 4 VERSION="0.4"
slaxemulator@9313 5 CATEGORY="system-tools"
slaxemulator@9313 6 SHORT_DESC="Utility to query the state of the rfkill switches"
slaxemulator@9313 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15600 8 LICENSE="MIT"
slaxemulator@9313 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@9313 10 WEB_SITE="http://linuxwireless.org/en/users/Documentation/rfkill"
slaxemulator@9313 11 WGET_URL="http://wireless.kernel.org/download/$PACKAGE/$TARBALL"
slaxemulator@9313 12 TAGS="kernel"
slaxemulator@9313 13
slaxemulator@9313 14 # Rules to configure and make the package.
slaxemulator@9313 15 compile_rules()
slaxemulator@9313 16 {
slaxemulator@9313 17 cd $src
slaxemulator@9313 18 sed -i 's/BINDIR) rfkill/BINDIR)/' Makefile
slaxemulator@9313 19 sed -i 's/-m 755 -t/-m 755 rfkill/' Makefile
slaxemulator@9313 20 sed -i 's/man8\/ rfkill\.8\.gz/man8\//' Makefile
slaxemulator@9313 21 sed -i 's/-m 644 -t/-m 644 rfkill.8.gz/' Makefile
pascal@15600 22 make && make DESTDIR=$DESTDIR install
slaxemulator@9313 23 }
slaxemulator@9313 24
slaxemulator@9313 25 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@9313 26 genpkg_rules()
slaxemulator@9313 27 {
slaxemulator@9313 28 mkdir -p $fs/usr
pascal@15600 29 cp -a $install/usr/sbin $fs/usr
slaxemulator@9313 30 }