wok-6.x diff streamripper/receipt @ rev 19433
syslinux/taziso: parse 64bit kernels
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Oct 02 15:40:25 2016 +0200 (2016-10-02) |
parents | e2914a415ebc |
children | e919c5a2742d |
line diff
1.1 --- a/streamripper/receipt Tue Sep 21 10:58:27 2010 +0000 1.2 +++ b/streamripper/receipt Sun Oct 02 15:40:25 2016 +0200 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="multimedia" 1.5 SHORT_DESC="Record streaming mp3 to your hard drive." 1.6 MAINTAINER="pankso@slitaz.org" 1.7 -DEPENDS="gtk+ libmad libvorbis faad2 glibc-base" 1.8 -BUILD_DEPENDS="gtk+-dev libmad-dev" 1.9 +LICENSE="GPL2" 1.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.11 WEB_SITE="http://streamripper.sourceforge.net/" 1.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.13 1.14 +DEPENDS="gtk+ libmad libvorbis faad2 glibc-base" 1.15 +BUILD_DEPENDS="gtk+-dev libmad-dev" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -20,12 +22,12 @@ 1.21 --prefix=/usr \ 1.22 $CONFIGURE_ARGS && 1.23 make && 1.24 - make DESTDIR=$PWD/_pkg install 1.25 + make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr/lib 1.32 - cp -a $_pkg/usr/bin $fs/usr 1.33 + cp -a $install/usr/bin $fs/usr 1.34 }