blob: 8cd53b6dd95f2a389ca97ab0f9984706c66f0b18 (
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
|
# Contributor: Carlo Landmeter
# Maintainer:
pkgname=libmodplug
pkgver=0.8.8.1
pkgrel=0
pkgdesc="A MOD playing library"
url="http://modplug-xmms.sourceforge.net/"
arch="x86 x86_64"
license="custom"
depends=
makedepends=
install=
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/modplug-xmms/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
md5sums="f7fa53a60c650024ff51cca88341776b libmodplug-0.8.8.1.tar.gz"
|