blob: ac8a7e6c5462f1c2ec9cbe397893517390c44213 (
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
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libmikmod
pkgver=3.3.10
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 $pkgname-doc"
source="http://kent.dl.sourceforge.net/project/mikmod/libmikmod/$pkgver/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 \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-alsa \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
sha512sums="89a71f859bb2dbd20db2b8e1c381df61639302b5e10b85d64fa329fcad5aec603992f11d24c4498c442090f1dded7c8f14271cbaf1acc1b7e719be9cff60b3fe libmikmod-3.3.10.tar.gz"
|