wok view alsaequal/receipt @ rev 25069

updated alsaequal (0.6 -> 0.7.1)
author Hans-G?nter Theisgen
date Fri Jun 10 14:01:46 2022 +0100 (23 months ago)
parents 7c0170dd3ecc
children 343c093ad221
line source
1 # SliTaz package receipt.
3 PACKAGE="alsaequal"
4 VERSION="0.7.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Real-time adjustable equalizer plugin for ALSA."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://web.archive.org/web/20161105202833/http://thedigitalmachine.net/alsaequal.html"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.thedigitalmachine.net/tools/$TARBALL"
13 WGET_URL="https://github.com/bassdr/$PACKAGE/archive/v$VERSION.tar.gz"
15 DEPENDS="alsa-utils caps"
16 BUILD_DEPENDS="alsa-lib-dev caps ladspa-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://github.com/bassdr/alsaequal/releases 2> /dev/null | \
22 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 make
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/alsa-lib
35 cp -a $src/*.so* $fs/usr/lib/alsa-lib
36 }