mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
32 lines
951 B
Bash
32 lines
951 B
Bash
pkgname=sdl_mixer
|
|
pkgver=1.2.12
|
|
pkgrel=10
|
|
pkgdesc="A simple multi-channel audio mixer"
|
|
arch=('x86_64')
|
|
url="http://www.libsdl.org/projects/SDL_mixer/"
|
|
license=('custom')
|
|
depends=('sdl>=1.2.12' 'libvorbis' 'libmikmod' 'smpeg')
|
|
makedepends=('fluidsynth')
|
|
optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
|
|
source=("http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-$pkgver.tar.gz")
|
|
md5sums=('e03ff73d77a55e3572ad0217131dc4a1')
|
|
|
|
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 --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/SDL_mixer-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|