wok annotate orpheus/receipt @ rev 10195

Up: mpg123 to 1.13.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 22:58:46 2011 +0000 (2011-05-20)
parents 6ec17b55b59a
children 0a4f92caca22
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"
gokhlayeh@9187 10 BUILD_DEPENDS="autoconf automake"
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
gokhlayeh@9187 20 unset CFLAGS CXXFLAGS
gokhlayeh@9187 21 ./configure &&
pascal@2459 22 make &&
gokhlayeh@9187 23 make DESTDIR=$DESTDIR install
pascal@813 24 }
pascal@813 25
pascal@813 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@813 27 genpkg_rules()
pascal@813 28 {
pascal@813 29 mkdir -p $fs/usr
pascal@813 30 cp -a $_pkg/usr/bin $fs/usr
pascal@813 31 }
pascal@813 32