wok-next annotate orpheus/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents 7d03592574dc
children 2765df2990a9
rev   line source
pascal@813 1 # SliTaz package receipt.
pascal@813 2
pascal@813 3 PACKAGE="orpheus"
pascal@813 4 VERSION="1.6"
pascal@813 5 CATEGORY="multimedia"
pascal@813 6 SHORT_DESC="Ncurses based audio player"
pascal@813 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2459 8 DEPENDS="ncurses libvorbis libogg libxml2 zlib"
pascal@813 9 SUGGESTED="mpg123"
pascal@813 10 BUILD_DEPENDS="ncurses-dev libvorbis-dev libogg-dev"
pascal@813 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@813 12 WEB_SITE="http://thekonst.net/en/orpheus"
pascal@813 13 WGET_URL="http://thekonst.net/download/$TARBALL"
jozee@4970 14 TAGS="audio sound music player"
pascal@813 15
pascal@813 16 # Rules to configure and make the package.
pascal@813 17 compile_rules()
pascal@813 18 {
pascal@813 19 cd $src
pascal@813 20 ./configure \
pascal@813 21 --prefix=/usr \
pascal@2462 22 --mandir=/usr/share/man &&
pascal@2459 23 make &&
pascal@2461 24 make DESTDIR=$PWD/_pkg install
pascal@813 25 }
pascal@813 26
pascal@813 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@813 28 genpkg_rules()
pascal@813 29 {
pascal@813 30 mkdir -p $fs/usr
pascal@813 31 cp -a $_pkg/usr/bin $fs/usr
pascal@813 32 }
pascal@813 33