wok view orpheus/receipt @ rev 25026

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 19 10:39:49 2022 +0000 (23 months ago)
parents 66530154b12f
children 2b069c72d47e
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.gz"
11 WEB_SITE="https://web.archive.org/web/20180602005123/http://thekonst.net/en/orpheus"
12 WGET_URL="http://ftp.uni-kl.de/pub/linux/gentoo/distfiles/4c/$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 }