wok annotate cmospwd/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents a78610b2eb47
children a6b997a82f39
rev   line source
pascal@18490 1 # SliTaz package receipt.
pascal@18490 2
pascal@18490 3 PACKAGE="cmospwd"
Hans-G?nter@20800 4 VERSION="5.1"
pascal@18490 5 CATEGORY="misc"
Hans-G?nter@20800 6 TAGS="CMOS"
pascal@18490 7 SHORT_DESC="Decrypts password stored in cmos used to access BIOS SETUP."
pascal@18490 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18490 9 LICENSE="GPL2"
Hans-G?nter@20800 10 WEB_SITE="https://www.cgsecurity.org/wiki/CmosPwd"
Hans-G?nter@20800 11
pascal@18490 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20669 13 WGET_URL="https://www.cgsecurity.org/$TARBALL"
pascal@18490 14
pascal@18490 15 # Rules to configure and make the package.
pascal@18490 16 compile_rules()
pascal@18490 17 {
pascal@18490 18 cd $src/src
pascal@18492 19 rm -f cmospwd
pascal@18490 20 make
pascal@18490 21 }
pascal@18490 22
pascal@18490 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18490 24 genpkg_rules()
pascal@18490 25 {
pascal@18490 26 mkdir -p $fs/usr/bin
pascal@18490 27 cp -a $src/src/cmospwd $fs/usr/bin
pascal@18490 28 }