slitaz-arm rev 131

Add wok/raspyplayer (need python3 I guess)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 24 20:25:31 2014 +0200 (2014-04-24)
parents 7fae2a06e947
children 2bff42af8850
files wok/raspyplayer/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wok/raspyplayer/receipt	Thu Apr 24 20:25:31 2014 +0200
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="raspyplayer"
     1.7 +VERSION="v2.7"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="A simple media player originally designed for the Raspberry Pi."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +LICENSE="GPL"
    1.12 +TARBALL="${PACKAGE}-${VERSION}.tar.gz"
    1.13 +WEB_SITE="http://raspyplayer.org/"
    1.14 +WGET_URL="https://github.com/jpec/raspyplayer/archive/$VERSION.tar.gz"
    1.15 +TAGS="raspberrypi rpi"
    1.16 +HOST_ARCH="i486 arm"
    1.17 +
    1.18 +DEPENDS="tk"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	install -D -m 0755 RasPyPlayer.py ${DESTDIR}/usr/bin/raspyplayer
    1.24 +	install -D -m 0644 raspyplayer.desktop \
    1.25 +		${DESTDIR}/usr/share/applications/raspyplayer.desktop
    1.26 +	install -D -m 0644 raspyplayer.png \
    1.27 +		${DESTDIR}/usr/share/pixmaps/raspyplayer.png
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr
    1.34 +	cp -a $install/usr/* $fs/usr
    1.35 +}