mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 20:02:24 +01:00
49 lines
1012 B
Plaintext
49 lines
1012 B
Plaintext
# 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"
|