extra/wavpack to 4.70.0-1

This commit is contained in:
Kevin Mihelich 2013-10-26 02:34:35 +00:00
parent 63f8e6b815
commit 6b7e1916f6

View file

@ -1,38 +1,31 @@
# $Id: PKGBUILD 146400 2012-01-10 20:33:06Z andrea $
# $Id$
# Maintainer:
# Contributor: François Charette <firmicus ατ gmx δοτ net>
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
# Contributor: Michal Hybner <dta081@gmail.com>
# ALARM: Kevin Mihelich <kevin@plugapps.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - changed configure line from --enable-mmx to --disable-mmx
plugrel=1
pkgname=wavpack
pkgver=4.60.1
pkgrel=2
pkgdesc="Audio compression format with lossless, lossy, and hybrid compression modes"
pkgver=4.70.0
pkgrel=1
pkgdesc="Audio compression format with lossless, lossy and hybrid compression modes"
arch=('i686' 'x86_64')
url="http://www.wavpack.com/"
license=('custom')
license=('BSD')
depends=('glibc')
options=('!libtool')
source=("http://www.wavpack.com/${pkgname}-${pkgver}.tar.bz2")
md5sums=('7bb1528f910e4d0003426c02db856063')
sha1sums=('7bf2022c988c19067196ee1fdadc919baacf46d1')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr \
--disable-mmx \
--disable-static
cd ${pkgname}-${pkgver}
./configure --prefix=/usr --disable-mmx
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
install -Dm644 license.txt \
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}