mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:47:15 +08:00
27 lines
728 B
Bash
27 lines
728 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
#Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libmpcdec
|
|
|
|
pkgname=libmpcdec
|
|
pkgver=1.2.6
|
|
pkgrel=3
|
|
pkgdesc="Musepack decoding library"
|
|
arch=('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
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
}
|