wok view orpheus/receipt @ rev 3639

abiword-plugins: fix compile for gcc44
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 18:01:23 2009 +0200 (2009-07-03)
parents 802a77e5a30c
children 6ec17b55b59a
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 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }