wok-current view macchanger/receipt @ rev 18987
Additional themes for Slitaz GNU/Linux.
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Thu Mar 17 05:14:19 2016 -0300 (2016-03-17) |
parents | af022550edde |
children | a3ac71e60068 |
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org"
11 WGET_URL="ftp://ftp.gnu.org/gnu/macchanger/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/macchanger $fs/usr/share
31 }