mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
Added wavpack
This commit is contained in:
parent
ccde03d8bf
commit
f24faf473b
1 changed files with 32 additions and 0 deletions
32
extra/wavpack/PKGBUILD
Executable file
32
extra/wavpack/PKGBUILD
Executable file
|
@ -0,0 +1,32 @@
|
||||||
|
# Maintainer: Mike Staszel <mikestaszel@plugboxlinux.org>
|
||||||
|
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
||||||
|
# Contributor: Michal Hybner <dta081@gmail.com>
|
||||||
|
|
||||||
|
# Plugbox changes:
|
||||||
|
# Removed "--enable-mmx" from the ./configure line
|
||||||
|
|
||||||
|
pkgname=wavpack
|
||||||
|
pkgver=4.60.1
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Audio compression format with lossless, lossy, and hybrid compression modes"
|
||||||
|
arch=(arm)
|
||||||
|
url="http://www.wavpack.com/"
|
||||||
|
license=('custom')
|
||||||
|
depends=('glibc')
|
||||||
|
options=('!libtool')
|
||||||
|
source=(http://www.wavpack.com/${pkgname}-${pkgver}.tar.bz2)
|
||||||
|
md5sums=('7bb1528f910e4d0003426c02db856063')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||||||
|
./configure --prefix=/usr --disable-static || return 1
|
||||||
|
make || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||||||
|
make DESTDIR=${pkgdir} install || return 1
|
||||||
|
install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
|
||||||
|
install -m644 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
|
||||||
|
rm -f ${pkgdir}/usr/lib/*.a
|
||||||
|
}
|
Loading…
Reference in a new issue