wok annotate orpheus/receipt @ rev 15113

libmatchbox: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 21:19:30 2013 +0000 (2013-08-14)
parents 8bd6cba570aa
children 064dbb4a9828
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
pascal@15110 22 export LDFLAGS="-Wl,--copy-dt-needed-entries -logg"
gokhlayeh@9187 23 unset CFLAGS CXXFLAGS
gokhlayeh@9187 24 ./configure &&
pascal@2459 25 make &&
gokhlayeh@9187 26 make DESTDIR=$DESTDIR install
pascal@813 27 }
pascal@813 28
pascal@813 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@813 30 genpkg_rules()
pascal@813 31 {
pascal@813 32 mkdir -p $fs/usr
pascal@15085 33 cp -a $install/usr/bin $fs/usr
pascal@813 34 }
pascal@813 35