blob: bc53b30244e9511cf708d910e398629e1531512f (
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
43
44
45
46
47
48
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libmikmod
pkgver=3.2.0
pkgrel=1
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
update_config_sub || return 1
}
build() {
cd "$_builddir"
# build fails with bash
export CONFIG_SHELL="/bin/sh"
./configure \
--build=$CBUILD \
--host=$CHOST \
--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"
|