mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
32 lines
945 B
Bash
Executable file
32 lines
945 B
Bash
Executable file
# 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
|
|
}
|