mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:27:14 +08:00
23 lines
630 B
Bash
23 lines
630 B
Bash
# $Id: PKGBUILD 57067 2009-10-31 12:00:53Z allan $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libmpcdec
|
|
pkgver=1.2.6
|
|
pkgrel=2
|
|
pkgdesc="Musepack decoding library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://musepack.net/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://files.musepack.net/source/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('7f7a060e83b4278acf4b77d7a7b9d2c0')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
}
|