wok view orpheus/receipt @ rev 15353

mp: remove TRY_DRIVERS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 30 17:09:51 2013 +0000 (2013-09-30)
parents 1ae5963f23df
children 17e313b5b9c1
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 export LDFLAGS="-Wl,--copy-dt-needed-entries -logg"
23 unset CFLAGS CXXFLAGS
24 ./configure 2>&1 | grep -v /config.rpath &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }