wok view libsdl-mixer/receipt @ rev 23794

updated zopfli (1.0.2 -> 1.0.3)
author Hans-G?nter Theisgen
date Fri May 22 13:39:32 2020 +0100 (2020-05-22)
parents 6037f37a1c85
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-mixer"
4 SOURCE="SDL_mixer"
5 VERSION="1.2.12"
6 CATEGORY="development"
7 SHORT_DESC="A multichannel sample and music mixer."
8 MAINTAINER="chadi.elahmad@gmail.com"
9 LICENSE="LGPL2.1"
10 WEB_SITE="http://www.libsdl.org/projects/SDL_mixer/"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://www.libsdl.org/projects/SDL_mixer/release/$TARBALL"
15 DEPENDS="libsdl libmad libvorbis libogg"
16 BUILD_DEPENDS="alsa-lib-dev libmad-dev libogg-dev libsdl libsdl-dev \
17 libvorbis-dev"
19 HOST_ARCH="i486 arm"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --enable-music-mp3-mad \
27 $CONFIGURE_ARGS &&
28 make -j 1 &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }