aboutsummaryrefslogtreecommitdiffstats
path: root/main/sdl_mixer/APKBUILD
blob: 3bc8bd5d80b53d36bc4136862dd6ba9549858e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Contributor: Carlo Landmeter
# Maintainer: 
pkgname=sdl_mixer
pkgver=1.2.11
pkgrel=0
pkgdesc="A simple multi-channel audio mixer"
url="http://www.libsdl.org/projects/SDL_mixer/"
arch="all"
license="GPL"
depends=
makedepends="sdl-dev libvorbis-dev"
install=
subpackages="$pkgname-dev"
source="http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-${pkgver}.tar.gz"

_builddir="$srcdir"/SDL_mixer-$pkgver

prepare() {
	cd "$_builddir"
	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
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
}

md5sums="65ada3d997fe85109191a5fb083f248c  SDL_mixer-1.2.11.tar.gz"