# HG changeset patch # User Christophe Lincoln # Date 1214821173 -7200 # Node ID 4899b9ac5d318ddf00cf6f43587df973da04e8ae # Parent 6d5a7118a9809a5819cfc0e92cc080af446323db Add Streamripper (Record mp3 stream to HD) diff -r 6d5a7118a980 -r 4899b9ac5d31 streamripper/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/streamripper/receipt Mon Jun 30 12:19:33 2008 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="streamripper" +VERSION="1.63.0" +CATEGORY="multimedia" +SHORT_DESC="Record streaming mp3 to your hard drive." +MAINTAINER="pankso@slitaz.org" +DEPENDS="gtk+ libmad" +BUILD_DEPENDS="gtk+-dev libmad-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://streamripper.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + chmod +x install-sh + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}