mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
29 lines
633 B
Bash
29 lines
633 B
Bash
pkgname=libmikmod
|
|
pkgver=3.3.8
|
|
pkgrel=1
|
|
pkgdesc="A portable sound library"
|
|
license=('GPL' 'LGPL')
|
|
url="http://sourceforge.net/projects/mikmod/"
|
|
arch=('x86_64')
|
|
depends=('libpulse' 'sh')
|
|
makedepends=('alsa-lib')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/mikmod/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('e100bbc4900953685d876fdd6487bc8a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|