wok annotate libsdl-mixer/receipt @ rev 15747

Up: dillo (3.0.3) with better integration for JWM flavor
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 03 10:29:30 2014 +0100 (2014-01-03)
parents 6eff489aa802
children 4cd474907d60
rev   line source
pascal@1136 1 # SliTaz package receipt.
pascal@1136 2
pascal@1136 3 PACKAGE="libsdl-mixer"
pascal@1136 4 SOURCE="SDL_mixer"
slaxemulator@6198 5 VERSION="1.2.11"
pascal@1136 6 CATEGORY="development"
pascal@1136 7 SHORT_DESC="A multichannel sample and music mixer."
pascal@1136 8 MAINTAINER="chadi.elahmad@gmail.com"
pascal@14996 9 LICENSE="LGPL2.1"
pascal@1136 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1136 11 WEB_SITE="http://www.libsdl.org/projects/SDL_mixer/"
pascal@1136 12 WGET_URL="http://www.libsdl.org/projects/SDL_mixer/release/$TARBALL"
pascal@14718 13
pankso@3425 14 DEPENDS="libsdl libmad libvorbis libogg"
pankso@3425 15 BUILD_DEPENDS="libsdl libsdl-dev libmad-dev libvorbis-dev libogg-dev "
pascal@1136 16
pascal@1136 17 # Rules to configure and make the package.
pascal@1136 18 compile_rules()
pascal@1136 19 {
pascal@1136 20 cd $src
pascal@1136 21 ./configure \
pascal@1136 22 --prefix=/usr \
pascal@1136 23 --mandir=/usr/share/man \
pascal@1136 24 --infodir=/usr/share/info \
pascal@1136 25 --enable-music-mp3-mad \
pascal@2476 26 $CONFIGURE_ARGS &&
pascal@2476 27 make &&
pascal@14718 28 make DESTDIR=$DESTDIR install
pascal@1136 29 }
pascal@1136 30
pascal@1136 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1136 32 genpkg_rules()
pascal@1136 33 {
pascal@1136 34 mkdir -p $fs/usr/lib
pascal@14718 35 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1136 36 }