wok view soundtouch/receipt @ rev 21932

updated soundtouch and soundtouch-dev (1.5.0 -> 2.1.2)
author Hans-G?nter Theisgen
date Sun Oct 06 16:14:23 2019 +0100 (2019-10-06)
parents a8e75e9bae6c
children 79be06fd31b1
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
22 ./configure \
23 --prefix=/usr \
24 --enable-shared \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }