2010-05-17 15:50:50 +08:00
|
|
|
# $Id: PKGBUILD 76017 2010-04-06 09:02:47Z ibiru $
|
2010-03-14 23:48:48 +08:00
|
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# Contributor: Patrick Leslie Polzer <leslie.polzer@gmx.net>
|
|
|
|
|
|
|
|
pkgname=libmodplug
|
2010-05-17 15:50:50 +08:00
|
|
|
pkgver=0.8.8
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A MOD playing library"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url="http://modplug-xmms.sourceforge.net/"
|
|
|
|
license=('custom')
|
|
|
|
depends=('gcc-libs')
|
|
|
|
options=('!libtool')
|
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/modplug-xmms/libmodplug-${pkgver}.tar.gz)
|
2010-05-17 15:50:50 +08:00
|
|
|
md5sums=('fa9e5ede2e53d847f288c0315feec275')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/libmodplug-${pkgver}
|
|
|
|
./configure --prefix=/usr || return 1
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
|
|
}
|
|
|
|
|