wok-next diff skypefreak/receipt @ rev 21017
Some maintenance
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 16 16:46:05 2018 +0300 (2018-10-16) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/skypefreak/receipt Tue Oct 16 16:46:05 2018 +0300 1.3 @@ -0,0 +1,23 @@ 1.4 +# SliTaz package receipt v2. 1.5 + 1.6 +PACKAGE="skypefreak" 1.7 +GITHASH="1efb36233858c580f0431a6e69be05030919f7cc" 1.8 +VERSION=${GITHASH:0:7} 1.9 +CATEGORY="network" 1.10 +SHORT_DESC="A cross platform forensic tool for Skype" 1.11 +MAINTAINER="al.bobylev@gmail.com" 1.12 +LICENSE="GPL3" 1.13 +WEB_SITE="https://github.com/yasoob/SkypeFreak" 1.14 + 1.15 +TARBALL="SkypeFreak-$VERSION.zip" 1.16 +WGET_URL="https://github.com/yasoob/SkypeFreak/archive/$GITHASH.zip" 1.17 + 1.18 +genpkg_rules() { 1.19 + mkdir -p $fs/usr/bin $fs/usr/share/applications 1.20 + cp -a $src/source/SkypeFreak.py $fs/usr/bin 1.21 + cp -a $stuff/*.desktop $fs/usr/share/applications 1.22 + 1.23 + # fix bug with unicode strings (I'm not a pythonist, sorry) 1.24 + sed -i 's|str(|unicode(|g' $fs/usr/bin/SkypeFreak.py 1.25 + DEPENDS="python" 1.26 +}