wok view macchanger/receipt @ rev 14249

gxine: fix build for 0.5.905 (last 0.5.907 have lirc bugs)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 25 11:24:21 2013 +0100 (2013-03-25)
parents 2c46537077fa
children 3765f181a6d5
line source
1 # SliTaz package receipt.
3 PACKAGE="macchanger"
4 VERSION="1.5.0"
5 CATEGORY="network"
6 SHORT_DESC="A small utility to change your MAC address"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org"
10 WGET_URL="ftp://ftp.gnu.org/gnu/macchanger/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/macchanger $fs/usr/share
30 }