wok view orpheus/receipt @ rev 22109

updated virtualenv (1.5.1 -> 16.7.7)
author Hans-G?nter Theisgen
date Fri Nov 01 17:02:38 2019 +0100 (2019-11-01)
parents 17e313b5b9c1
children 505d1daeed6c
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="https://web.archive.org/web/20180602005123/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 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -logg"
22 unset CFLAGS CXXFLAGS
23 ./configure 2>&1 | grep -v /config.rpath &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }