wok rev 2871

Add:shell.fm (last.fm cli player)
author Rohit Joshi <jozee@slitaz.org>
date Sat May 02 20:54:33 2009 +0000 (2009-05-02)
parents fce920962070
children ba5376bd8361
files shell-fm/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/shell-fm/receipt	Sat May 02 20:54:33 2009 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="shell-fm"
     1.7 +VERSION="0.6"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="console based player for the streams provided by Last.FM"
    1.10 +MAINTAINER="jozee@slitaz.org"
    1.11 +DEPENDS="libmad libao"
    1.12 +BUILD_DEPENDS="libmad-dev libao-dev libao git"
    1.13 +
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	mkdir $src 2> /dev/null
    1.19 +	cd $src
    1.20 +	git clone git://github.com/jkramer/shell-fm.git $PACKAGE
    1.21 +	cd $PACKAGE
    1.22 +	make &&
    1.23 +	make DESTDIR=$PWD/../_pkg install
    1.24 +
    1.25 +}
    1.26 +
    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 $_pkg/usr/bin $fs/usr
    1.34 +	
    1.35 +}