wok view soundtouch/receipt @ rev 25317

updated soundtouch and soundtouch-dev (2.1.2 -> 2.3.1)
author Hans-G?nter Theisgen
date Thu Jul 21 07:14:01 2022 +0100 (21 months ago)
parents 3c87910e2ece
children
line source
1 # SliTaz package receipt.
3 PACKAGE="soundtouch"
4 VERSION="2.3.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="An audio processing library."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.surina.net/soundtouch/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 DEPENDS="gcc-lib-base"
15 BUILD_DEPENDS="automake libtool"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/release/!d;s|.* is ||;s| .*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 [ -d config/m4 ] || mkdir -p config/m4
28 ./bootstrap &&
29 ./configure \
30 --prefix=/usr \
31 --enable-shared \
32 $CONFIGURE_ARGS &&
33 make &&
34 make install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 cook_copy_folders bin
41 cook_copy_files *.so*
42 }