wok annotate alsaequal/receipt @ rev 25036

gtk-gnutella: binutils 2.34+ support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 13:10:56 2022 +0000 (2022-05-21)
parents 814c58f64f83
children a769fef7a975
rev   line source
paul@7621 1 # SliTaz package receipt.
paul@7621 2
paul@7621 3 PACKAGE="alsaequal"
paul@7621 4 VERSION="0.6"
paul@7621 5 CATEGORY="multimedia"
paul@7621 6 SHORT_DESC="Real-time adjustable equalizer plugin for ALSA."
paul@7621 7 MAINTAINER="paul@slitaz.org"
pascal@15362 8 LICENSE="LGPL2.1"
paul@7621 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20423 10 WEB_SITE="https://web.archive.org/web/20161105202833/http://thedigitalmachine.net/alsaequal.html"
paul@7621 11 WGET_URL="http://www.thedigitalmachine.net/tools/$TARBALL"
paul@7621 12
pascal@15362 13 DEPENDS="alsa-utils caps"
pascal@15362 14 BUILD_DEPENDS="caps alsa-lib-dev"
pascal@15362 15
pascal@24535 16 # What is the latest version available today?
pascal@24535 17 current_version()
pascal@24535 18 {
pascal@24535 19 wget -O - https://github.com/bassdr/alsaequal/releases 2> /dev/null | \
pascal@24535 20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
pascal@24535 21 }
pascal@24535 22
paul@7621 23 # Rules to configure and make the package.
paul@7621 24 compile_rules()
paul@7621 25 {
paul@7621 26 make
paul@7621 27 }
paul@7621 28
paul@7621 29 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7621 30 genpkg_rules()
paul@7621 31 {
paul@7621 32 mkdir -p $fs/usr/lib/alsa-lib
paul@7621 33 cp -a $src/*.so* $fs/usr/lib/alsa-lib
paul@7621 34 }