mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
29 lines
666 B
Bash
29 lines
666 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakraos.org
|
|
#
|
|
# Maintainer: Fabian Kosmale <0inkaen@googlemail.com>
|
|
|
|
pkgname=libmodplug
|
|
pkgver=0.8.8.5
|
|
pkgrel=1
|
|
pkgdesc="A MOD playing library"
|
|
arch=('x86_64')
|
|
url="http://modplug-xmms.sourceforge.net/"
|
|
license=('custom')
|
|
depends=('gcc-libs')
|
|
source=("http://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('5f30241db109d647781b784e62ddfaa1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|
|
|