wok rev 16173

Add: ympd (web frontend for mpd - perfect for RPi audio center remote control from desktop or mobile
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 30 16:39:01 2014 +0200 (2014-03-30)
parents 167df68aa303
children e061070ab846
files ympd/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ympd/receipt	Sun Mar 30 16:39:01 2014 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ympd"
     1.7 +VERSION="master-1"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Lightweight MPD (Music Player Daemon) web client."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.13 +WEB_SITE="http://www.ympd.org/"
    1.14 +WGET_URL="git|git://github.com/notandy/ympd.git"
    1.15 +HOST_ARCH="i486 arm"
    1.16 +
    1.17 +DEPENDS="mpd libmpdclient"
    1.18 +BUILD_DEPENDS="libmpdclient-dev git"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	mkdir build && cd build
    1.24 +	cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
    1.25 +		.. &&
    1.26 +	make && make install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +}