wok view macchanger/receipt @ rev 21579

updated python-gevent (0.13.8 -> 1.4.0)
author Hans-G?nter Theisgen
date Sun May 19 16:11:22 2019 +0100 (2019-05-19)
parents 3765f181a6d5
children 9b3e5f996086
line source
1 # SliTaz package receipt.
3 PACKAGE="macchanger"
4 VERSION="1.7.0"
5 CATEGORY="network"
6 SHORT_DESC="A small utility to change your MAC address."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/macchanger/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/alobbs/$PACKAGE/releases/download/$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/macchanger $fs/usr/share
33 }