wok view orpheus/receipt @ rev 2459

obby, ocaml, odt2txt, opal, openbox, openldap, opentyrian-classic, orpheus: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 14 14:38:58 2009 +0000 (2009-03-14)
parents 6cb7faec0f95
children 802a77e5a30c
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 DEPENDS="ncurses libvorbis libogg libxml2 zlib"
9 SUGGESTED="mpg123"
10 BUILD_DEPENDS="ncurses-dev libvorbis-dev libogg-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://thekonst.net/en/orpheus"
13 WGET_URL="http://thekonst.net/download/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install &&
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }