mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 02:37:17 +08:00
30 lines
994 B
Bash
30 lines
994 B
Bash
# $Id: PKGBUILD 70367 2010-02-26 13:24:25Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Contributor: Lukas Sabota <punkrockguy318@cocmast.net> (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
|
|
}
|