wok-next diff cmospwd/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | a3c581bf52b8 |
children |
line diff
1.1 --- a/cmospwd/receipt Fri Aug 10 12:53:17 2018 +0300 1.2 +++ b/cmospwd/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -1,9 +1,9 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="cmospwd" 1.7 -VERSION="5.0" 1.8 +VERSION="5.1" 1.9 CATEGORY="misc" 1.10 -SHORT_DESC="Decrypts password stored in cmos used to access BIOS SETUP" 1.11 +SHORT_DESC="Decrypts password stored in CMOS used to access BIOS Setup" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 WEB_SITE="https://www.cgsecurity.org/wiki/CmosPwd" 1.15 @@ -11,14 +11,13 @@ 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 WGET_URL="http://www.cgsecurity.org/$TARBALL" 1.18 1.19 +TAGS_std="CMOS" 1.20 + 1.21 compile_rules() { 1.22 - cd $src/src 1.23 - rm -f cmospwd 1.24 - make && 1.25 - install -Dm755 $src/src/cmospwd $install/usr/bin/cmospwd 1.26 + rm src/cmospwd 1.27 + make -C src || return 1 1.28 + 1.29 + install -Dm755 src/cmospwd $install/usr/bin/cmospwd 1.30 + 1.31 + cook_pick_docs cmospwd.txt 1.32 } 1.33 - 1.34 -genpkg_rules() { 1.35 - copy @std 1.36 - TAGS="CMOS" 1.37 -}