wok view orpheus/receipt @ rev 1383

vim: fix all (vim72)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Sep 15 15:26:29 2008 +0200 (2008-09-15)
parents
children 4482e0fab13a
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"
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 }