summaryrefslogtreecommitdiffstats
path: root/main/libmikmod/APKBUILD
blob: 374e5f08a2fb7608f348efebeac690034801d585 (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
41
42
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libmikmod
pkgver=3.2.0
pkgrel=0
pkgdesc="module playing library"
url="http://mikmod.shlomifish.org"
arch="all"
license="GPL"
depends=
depends_dev=
makedepends="alsa-lib-dev $depends_dev"
install=""
subpackages="$pkgname-dev"
source="http://mikmod.shlomifish.org/files/libmikmod-$pkgver.tar.gz"

_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	# build fails with bash
	export CONFIG_SHELL="/bin/sh"
	./configure --prefix=/usr --enable-alsa || return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm "$pkgdir"/usr/lib/*.la
}

md5sums="96e9820d72a41fe27ff304071739696c  libmikmod-3.2.0.tar.gz"