wok-next annotate SkypeFreak/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents 1d89d659f084
children d958fec46c9f
rev   line source
al@16452 1 # SliTaz package receipt.
al@16452 2
al@16452 3 PACKAGE="SkypeFreak"
al@16452 4 GITHASH="1efb36233858c580f0431a6e69be05030919f7cc"
al@16452 5 VERSION=${GITHASH:0:7}
al@16452 6 CATEGORY="network"
al@16452 7 SHORT_DESC="A cross platform forensic tool for Skype"
al@16452 8 MAINTAINER="al.bobylev@gmail.com"
al@16452 9 LICENSE="GPL3"
al@16452 10 WEB_SITE="https://github.com/yasoob/SkypeFreak"
al@16452 11 TARBALL="$PACKAGE-$VERSION.zip"
al@16452 12 WGET_URL="https://github.com/yasoob/$PACKAGE/archive/$GITHASH.zip"
al@16452 13
al@16452 14 DEPENDS="python"
al@16452 15
al@16452 16 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16452 17 genpkg_rules()
al@16452 18 {
al@16455 19 mkdir -p $fs/usr/bin $fs/usr/share/applications
al@16452 20 cp -a $src/source/SkypeFreak.py $fs/usr/bin
al@16455 21 cp -a $stuff/*.desktop $fs/usr/share/applications
al@16452 22
al@16452 23 # fix bug with unicode strings (I'm not a pythonist, sorry)
al@16452 24 sed -i 's|str(|unicode(|g' $fs/usr/bin/SkypeFreak.py
al@16452 25 }