wok view streamripper/receipt @ rev 17057

syslinux/c32box: x86_64 auto select
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 21 09:56:57 2014 +0200 (2014-08-21)
parents e2914a415ebc
children e919c5a2742d
line source
1 # SliTaz package receipt.
3 PACKAGE="streamripper"
4 VERSION="1.64.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Record streaming mp3 to your hard drive."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://streamripper.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ libmad libvorbis faad2 glibc-base"
14 BUILD_DEPENDS="gtk+-dev libmad-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 chmod +x install-sh
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 }