# $Id: PKGBUILD 70367 2010-02-26 13:24:25Z allan $ # Maintainer: Allan McRae # Contributor: Tom Newsom # Contributor: Lukas Sabota (Timidity Patch) pkgname=sdl_mixer pkgver=1.2.11 pkgrel=2 pkgdesc="A simple multi-channel audio mixer" arch=('i686' 'x86_64') url="http://www.libsdl.org/projects/SDL_mixer/" license=('LGPL' 'GPL') depends=('sdl>=1.2.12' 'libvorbis' 'libmikmod' 'smpeg') options=('!libtool') source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-${pkgver}.tar.gz) md5sums=('65ada3d997fe85109191a5fb083f248c') build() { cd ${srcdir}/SDL_mixer-${pkgver} sed -e "/CONFIG_FILE_ETC/s/\/etc\/timidity.cfg/\/etc\/timidity++\/timidity.cfg/" \ -e "/DEFAULT_PATH/s/\/etc\/timidity/\/etc\/timidity++/" \ -e "/DEFAULT_PATH2/s/\/usr\/local\/lib\/timidity/\/usr\/lib\/timidity/" \ -i timidity/config.h ./configure --prefix=/usr make || return 1 make DESTDIR=${pkgdir} install }