Date: Wednesday, February 21, 2018 @ 17:13:39 Author: dvzrv Revision: 296713
upgpkg: zita-bls1 0.1.0-3 Removing march=native from CXXFLAGS. Modified: zita-bls1/trunk/PKGBUILD ----------+ PKGBUILD | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-02-21 17:12:47 UTC (rev 296712) +++ PKGBUILD 2018-02-21 17:13:39 UTC (rev 296713) @@ -1,7 +1,7 @@ # Maintainer: David Runge <[email protected]> pkgname=zita-bls1 pkgver=0.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="Implementation of a Blumlein Shuffler to convert binaural stereo signals into a form suitable for reproduction on convential stereo speakers." arch=('x86_64') url="https://kokkinizita.linuxaudio.org/linuxaudio" @@ -12,6 +12,12 @@ source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2") sha512sums=('a1b4bd7a7ca56afb627e9f095e5e1f67415a52ae316bdc6ce0eced191830f53eaf5ba3402a44fbbb97529e29a0b007d1f0f8e79c89c863207216bca1fb76435c') +prepare() { + cd "${pkgname}-${pkgver}/source" + # strip march=native + sed -e '/native/d' -i Makefile +} + build() { cd "${pkgname}-${pkgver}/source" make PREFIX=/usr
