wok view libsdl2-mixer/receipt @ rev 23675

updated strigi, strigi-client and strigi-dev (0.7.5 -> 0.7.8)
author Hans-G?nter Theisgen
date Sun Apr 26 10:35:40 2020 +0100 (2020-04-26)
parents 5a199adea305
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl2-mixer"
4 VERSION="2.0.4"
5 CATEGORY="development"
6 SHORT_DESC="A multichannel sample and music mixer."
7 MAINTAINER="tcg.thegamer@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.libsdl.org/projects/SDL_mixer/"
11 SOURCE="SDL2_mixer"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://www.libsdl.org/projects/SDL_mixer/release/$TARBALL"
15 DEPENDS="libmad libogg libsdl2 libvorbis"
16 BUILD_DEPENDS="libmad-dev libogg-dev libsdl2 libsdl2-dev libvorbis-dev"
18 HOST_ARCH="i486 arm"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --enable-music-mp3-mad \
26 $CONFIGURE_ARGS &&
27 make -j 1 &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }