wok-current annotate mfoc/receipt @ rev 24308
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jan 17 18:18:17 2022 +0000 (2022-01-17) |
parents | 46fc8daa3b41 |
children | 9b180a3071fb |
rev | line source |
---|---|
pascal@18333 | 1 # SliTaz package receipt. |
pascal@18333 | 2 |
pascal@18333 | 3 PACKAGE="mfoc" |
pascal@18333 | 4 VERSION="0.10.7" |
pascal@18333 | 5 CATEGORY="development" |
pascal@18333 | 6 SHORT_DESC="Mifare Classic Offline Cracker." |
pascal@18333 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@18334 | 8 LICENSE="GPL2" |
pascal@18333 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@18333 | 10 WEB_SITE="https://github.com/nfc-tools/mfoc" |
pascal@18333 | 11 WGET_URL="http://mfoc.googlecode.com/files/$TARBALL" |
pascal@18333 | 12 |
pascal@18333 | 13 DEPENDS="libnfc" |
pascal@18333 | 14 BUILD_DEPENDS="pkg-config libnfc-dev" |
pascal@18333 | 15 |
pascal@24308 | 16 # What is the latest version available today? |
pascal@24308 | 17 current_version() |
pascal@24308 | 18 { |
pascal@24308 | 19 wget -O - $WEB_SITE/tags 2>/dev/null | \ |
pascal@24308 | 20 sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' |
pascal@24308 | 21 } |
pascal@24308 | 22 |
pascal@18333 | 23 # Rules to configure and make the package. |
pascal@18333 | 24 compile_rules() |
pascal@18333 | 25 { |
pascal@18333 | 26 ./configure --prefix=/usr \ |
pascal@18333 | 27 $CONFIGURE_ARGS && |
pascal@18333 | 28 make && |
pascal@18333 | 29 make DESTDIR=$DESTDIR install |
pascal@18333 | 30 } |
pascal@18333 | 31 |
pascal@18333 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@18333 | 33 genpkg_rules() |
pascal@18333 | 34 { |
pascal@18333 | 35 mkdir -p $fs/usr |
pascal@18333 | 36 cp -a $install/usr/bin $fs/usr |
pascal@18333 | 37 } |