wok view SkypeFreak/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 89c8d8b6cf48
children d66160614dc4
line source
1 # SliTaz package receipt.
3 PACKAGE="SkypeFreak"
4 GITHASH="9347a651e724b41a8da3bc77568577f3c8ed3036"
5 VERSION="20160217"
6 CATEGORY="network"
7 SHORT_DESC="A cross platform forensic tool for Skype"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL3"
10 WEB_SITE="http://osandamalith.github.io/SkypeFreak/"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="https://github.com/OsandaMalith/$PACKAGE/archive/$GITHASH.zip"
14 DEPENDS="python"
15 BUILD_DEPENDS="wget"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/*/*}/commits/master 2>/dev/null | \
21 sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y -d
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/share/applications
28 cp -a $src/source/SkypeFreak.py $fs/usr/bin
29 cp -a $stuff/*.desktop $fs/usr/share/applications
31 # fix bug with unicode strings (I'm not a pythonist, sorry)
32 sed -i 's|str(|unicode(|g' $fs/usr/bin/SkypeFreak.py
33 }