Date: Thursday, July 19, 2018 @ 22:00:19 Author: dvzrv Revision: 362457
upgpkg: zita-bls1 0.1.0-5 Fixing call to freetype-config with call to pkgconf. Minor fixes. Modified: zita-bls1/trunk/PKGBUILD ----------+ PKGBUILD | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-07-19 21:48:05 UTC (rev 362456) +++ PKGBUILD 2018-07-19 22:00:19 UTC (rev 362457) @@ -1,8 +1,9 @@ +# $Id$ # Maintainer: David Runge <[email protected]> pkgname=zita-bls1 pkgver=0.1.0 -pkgrel=4 -pkgdesc="Implementation of a Blumlein Shuffler to convert binaural stereo signals into a form suitable for reproduction on convential stereo speakers." +pkgrel=5 +pkgdesc="Blumlein Shuffler implementation converting binaural stereo signals into a form suitable for reproduction on convential stereo speakers." arch=('x86_64') url="https://kokkinizita.linuxaudio.org/linuxaudio" license=('GPL2') @@ -15,7 +16,9 @@ prepare() { cd "${pkgname}-${pkgver}/source" # strip march=native - sed -e '/native/d' -i Makefile + sed -e '/native/d' \ + -e 's/freetype-config\ --cflags/pkgconf\ --cflags\ freetype2/' \ + -i Makefile } build() { @@ -29,6 +32,6 @@ # docs install -t "${pkgdir}/usr/share/doc/${pkgname}" \ - -vDm644 ../doc/html/* \ - -vDm644 ../{AUTHORS,README} + -vDm 644 ../doc/html/* \ + -vDm 644 ../{AUTHORS,README} }
