wok view soundtouch/receipt @ rev 21933

updated soundtouch and soundtouch-dev again (1.5.0 -> 2.1.2)
author Hans-G?nter Theisgen
date Sun Oct 06 16:16:27 2019 +0100 (2019-10-06)
parents 1d9749eb91c6
children 6542c854008f
line source
1 # SliTaz package receipt.
3 PACKAGE="soundtouch"
4 VERSION="2.1.2"
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.bz2"
12 WGET_URL="https://gitlab.com/$PACKAGE/$PACKAGE/-/archive/$VERSION/$TARBALL"
14 DEPENDS="gcc-lib-base"
15 BUILD_DEPENDS="automake libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # sed -i 's|/doc/|/share&|' Makefile*
21 # patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch
23 ./bootstrap &&
24 ./configure \
25 --prefix=/usr \
26 --enable-shared \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }