# HG changeset patch # User Rohit Joshi # Date 1241297673 0 # Node ID 5292ead3cffdc19dfba010ebae3c693e0b15de8f # Parent fce92096207045cc5c912296635259da93d224d2 Add:shell.fm (last.fm cli player) diff -r fce920962070 -r 5292ead3cffd shell-fm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/shell-fm/receipt Sat May 02 20:54:33 2009 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="shell-fm" +VERSION="0.6" +CATEGORY="multimedia" +SHORT_DESC="console based player for the streams provided by Last.FM" +MAINTAINER="jozee@slitaz.org" +DEPENDS="libmad libao" +BUILD_DEPENDS="libmad-dev libao-dev libao git" + + +# Rules to configure and make the package. +compile_rules() +{ + mkdir $src 2> /dev/null + cd $src + git clone git://github.com/jkramer/shell-fm.git $PACKAGE + cd $PACKAGE + make && + make DESTDIR=$PWD/../_pkg install + +} + + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + +}