wok annotate 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
rev   line source
gokhlayeh@5876 1 # SliTaz package receipt.
gokhlayeh@5876 2
gokhlayeh@5876 3 PACKAGE="macchanger"
Hans-G?nter@21411 4 VERSION="1.7.0"
gokhlayeh@5876 5 CATEGORY="network"
Hans-G?nter@21411 6 SHORT_DESC="A small utility to change your MAC address."
gokhlayeh@7034 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15584 8 LICENSE="GPL2"
Hans-G?nter@21411 9 WEB_SITE="https://www.gnu.org/macchanger/"
Hans-G?nter@21411 10
gokhlayeh@5876 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21411 12 WGET_URL="https://github.com/alobbs/$PACKAGE/releases/download/$VERSION/$TARBALL"
gokhlayeh@5876 13
gokhlayeh@5876 14 # Rules to configure and make the package.
gokhlayeh@5876 15 compile_rules()
gokhlayeh@5876 16 {
Hans-G?nter@21411 17 ./configure \
Hans-G?nter@21411 18 --prefix=/usr \
Hans-G?nter@21411 19 --infodir=/usr/share/info \
Hans-G?nter@21411 20 --mandir=/usr/share/man \
gokhlayeh@5876 21 $CONFIGURE_ARGS &&
Hans-G?nter@21411 22 make -j 1 &&
Hans-G?nter@21411 23 make DESTDIR=$DESTDIR install
gokhlayeh@5876 24 }
gokhlayeh@5876 25
gokhlayeh@5876 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@5876 27 genpkg_rules()
gokhlayeh@5876 28 {
gokhlayeh@5876 29 mkdir -p $fs/usr/share
Hans-G?nter@21411 30
Hans-G?nter@21411 31 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21411 32 cp -a $install/usr/share/macchanger $fs/usr/share
gokhlayeh@5876 33 }