wok annotate orpheus/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 66530154b12f
children 2b069c72d47e
rev   line source
pascal@813 1 # SliTaz package receipt.
pascal@813 2
pascal@813 3 PACKAGE="orpheus"
pascal@813 4 VERSION="1.6"
pascal@813 5 CATEGORY="multimedia"
pascal@813 6 SHORT_DESC="Ncurses based audio player"
pascal@813 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15085 8 LICENSE="GPL2"
pascal@813 9 SUGGESTED="mpg123"
pascal@25026 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21576 11 WEB_SITE="https://web.archive.org/web/20180602005123/http://thekonst.net/en/orpheus"
pascal@25026 12 WGET_URL="http://ftp.uni-kl.de/pub/linux/gentoo/distfiles/4c/$TARBALL"
jozee@4970 13 TAGS="audio sound music player"
pascal@813 14
pascal@15085 15 DEPENDS="ncurses libvorbis libogg libxml2 zlib"
pascal@15085 16 BUILD_DEPENDS="autoconf automake libvorbis-dev libogg-dev ncurses-dev"
pascal@15085 17
pascal@813 18 # Rules to configure and make the package.
pascal@813 19 compile_rules()
pascal@813 20 {
pascal@17670 21 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -logg"
gokhlayeh@9187 22 unset CFLAGS CXXFLAGS
pascal@15170 23 ./configure 2>&1 | grep -v /config.rpath &&
pascal@2459 24 make &&
gokhlayeh@9187 25 make DESTDIR=$DESTDIR install
pascal@813 26 }
pascal@813 27
pascal@813 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@813 29 genpkg_rules()
pascal@813 30 {
pascal@813 31 mkdir -p $fs/usr
pascal@15085 32 cp -a $install/usr/bin $fs/usr
pascal@813 33 }