wok annotate libsdl-mixer/receipt @ rev 12277

ocsreports: Improve post_install
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Apr 15 14:25:46 2012 +0200 (2012-04-15)
parents ba0df146049f
children 6eff489aa802
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@1136 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1136 10 WEB_SITE="http://www.libsdl.org/projects/SDL_mixer/"
pascal@1136 11 WGET_URL="http://www.libsdl.org/projects/SDL_mixer/release/$TARBALL"
pankso@3425 12 DEPENDS="libsdl libmad libvorbis libogg"
pankso@3425 13 BUILD_DEPENDS="libsdl libsdl-dev libmad-dev libvorbis-dev libogg-dev "
pascal@1136 14
pascal@1136 15 # Rules to configure and make the package.
pascal@1136 16 compile_rules()
pascal@1136 17 {
pascal@1136 18 cd $src
pascal@1136 19 ./configure \
pascal@1136 20 --prefix=/usr \
pascal@1136 21 --mandir=/usr/share/man \
pascal@1136 22 --infodir=/usr/share/info \
pascal@1136 23 --enable-music-mp3-mad \
pascal@2476 24 $CONFIGURE_ARGS &&
pascal@2476 25 make &&
pascal@1136 26 make DESTDIR=$PWD/_pkg install
pascal@1136 27 }
pascal@1136 28
pascal@1136 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1136 30 genpkg_rules()
pascal@1136 31 {
pascal@1136 32 mkdir -p $fs/usr/lib
pascal@1136 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1136 34 }