blob: de27d8451904eaf286695db3e36bc92b1eefccda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $Id: PKGBUILD 141656 2011-11-01 10:26:35Z pierre $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=libmpcdec
pkgver=1.2.6
pkgrel=3
pkgdesc="Musepack decoding library"
arch=('i686' 'x86_64' 'mips64el')
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
}
|