wok view orpheus/receipt @ rev 18859

Up 1.0v to 1.0.1v
author Leonardo Laporte <hackdorte@sapo.pt>
date Wed Jan 27 06:07:29 2016 +0000 (2016-01-27)
parents 064dbb4a9828
children 66530154b12f
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="$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 }