wok annotate orpheus/receipt @ rev 15085

orpheus: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 20:39:06 2013 +0000 (2013-08-13)
parents 47c30bd85a46
children 1ae5963f23df
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@15085 8 LICENSE="GPL2"
pascal@813 9 SUGGESTED="mpg123"
pascal@813 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@813 11 WEB_SITE="http://thekonst.net/en/orpheus"
pascal@813 12 WGET_URL="http://thekonst.net/download/$TARBALL"
jozee@4970 13 TAGS="audio sound music player"
pascal@813 14
pascal@15085 15 DEPENDS="ncurses libvorbis libogg libxml2 zlib"
pascal@15085 16 BUILD_DEPENDS="autoconf automake libvorbis-dev libogg-dev ncurses-dev"
pascal@15085 17
pascal@813 18 # Rules to configure and make the package.
pascal@813 19 compile_rules()
pascal@813 20 {
pascal@813 21 cd $src
gokhlayeh@9187 22 unset CFLAGS CXXFLAGS
gokhlayeh@9187 23 ./configure &&
pascal@2459 24 make &&
gokhlayeh@9187 25 make DESTDIR=$DESTDIR install
pascal@813 26 }
pascal@813 27
pascal@813 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@813 29 genpkg_rules()
pascal@813 30 {
pascal@813 31 mkdir -p $fs/usr
pascal@15085 32 cp -a $install/usr/bin $fs/usr
pascal@813 33 }
pascal@813 34