wok view SkypeFreak/receipt @ rev 23091

updated libogg and libogg-dev (1.3.3 -> 1.3.4)
author Hans-G?nter Theisgen
date Wed Mar 11 15:08:06 2020 +0100 (2020-03-11)
parents 1d89d659f084
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
3 PACKAGE="SkypeFreak"
4 GITHASH="9347a651e724b41a8da3bc77568577f3c8ed3036"
5 VERSION=${GITHASH:0:7}
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 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/bin $fs/usr/share/applications
21 cp -a $src/source/SkypeFreak.py $fs/usr/bin
22 cp -a $stuff/*.desktop $fs/usr/share/applications
24 # fix bug with unicode strings (I'm not a pythonist, sorry)
25 sed -i 's|str(|unicode(|g' $fs/usr/bin/SkypeFreak.py
26 }