wok view libsdl-mixer/receipt @ rev 14806

Down tazdrop (4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 17 09:36:02 2013 +0200 (2013-07-17)
parents 8c08820e8dfb
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-mixer"
4 SOURCE="SDL_mixer"
5 VERSION="1.2.11"
6 CATEGORY="development"
7 SHORT_DESC="A multichannel sample and music mixer."
8 MAINTAINER="chadi.elahmad@gmail.com"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.libsdl.org/projects/SDL_mixer/"
11 WGET_URL="http://www.libsdl.org/projects/SDL_mixer/release/$TARBALL"
13 DEPENDS="libsdl libmad libvorbis libogg"
14 BUILD_DEPENDS="libsdl libsdl-dev libmad-dev libvorbis-dev libogg-dev "
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 --infodir=/usr/share/info \
24 --enable-music-mp3-mad \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }