25 lines
688 B
Bash
25 lines
688 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libmodplug
|
|
pkgver=0.8.9.0
|
|
pkgrel=3
|
|
pkgdesc="A MOD playing library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://modplug-xmms.sourceforge.net/"
|
|
license=('Public-Domain')
|
|
depends=('gcc-libs')
|
|
source=(https://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz)
|
|
sha512sums=('880e10154fd367ee24ace53ca7e32a5c1fee7dfff1f934e6499944c12779427da63e2f55f8d6ce25db0a42a5b4424053bf64305b31dbfc4ef6a8909924d655fd')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|