wok annotate 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
rev   line source
al@16452 1 # SliTaz package receipt.
al@16452 2
al@16452 3 PACKAGE="SkypeFreak"
pascal@22825 4 GITHASH="9347a651e724b41a8da3bc77568577f3c8ed3036"
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"
pascal@22825 10 WEB_SITE="http://osandamalith.github.io/SkypeFreak/"
al@16452 11 TARBALL="$PACKAGE-$VERSION.zip"
pascal@22825 12 WGET_URL="https://github.com/OsandaMalith/$PACKAGE/archive/$GITHASH.zip"
al@16452 13
al@16452 14 DEPENDS="python"
al@16453 15 BUILD_DEPENDS="wget"
al@16452 16
al@16452 17 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16452 18 genpkg_rules()
al@16452 19 {
al@16455 20 mkdir -p $fs/usr/bin $fs/usr/share/applications
al@16452 21 cp -a $src/source/SkypeFreak.py $fs/usr/bin
al@16455 22 cp -a $stuff/*.desktop $fs/usr/share/applications
al@16452 23
al@16452 24 # fix bug with unicode strings (I'm not a pythonist, sorry)
al@16452 25 sed -i 's|str(|unicode(|g' $fs/usr/bin/SkypeFreak.py
al@16452 26 }