wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="orpheus"
4 VERSION="1.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Ncurses based audio player"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SUGGESTED="mpg123"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://thekonst.net/en/orpheus"
12 WGET_URL="http://thekonst.net/download/$TARBALL"
13 TAGS="audio sound music player"
15 DEPENDS="ncurses libvorbis libogg libxml2 zlib"
16 BUILD_DEPENDS="autoconf automake libvorbis-dev libogg-dev ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 unset CFLAGS CXXFLAGS
23 ./configure &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }