Date: Sunday, February 17, 2019 @ 17:09:04 Author: arojas Revision: 346438
Fix OGG file corruption Modified: taglib/trunk/PKGBUILD ----------+ PKGBUILD | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-02-17 16:48:58 UTC (rev 346437) +++ PKGBUILD 2019-02-17 17:09:04 UTC (rev 346438) @@ -6,7 +6,7 @@ pkgname=taglib pkgver=1.11.1 -pkgrel=2 +pkgrel=3 pkgdesc="A Library for reading and editing the meta-data of several popular audio formats" arch=(x86_64) url="https://taglib.github.io/" @@ -13,11 +13,16 @@ license=(LGPL MPL) depends=(zlib) makedepends=(cmake boost) -source=("https://taglib.github.io/releases/$pkgname-$pkgver.tar.gz") -md5sums=('cee7be0ccfc892fa433d6c837df9522a') +source=("https://taglib.github.io/releases/$pkgname-$pkgver.tar.gz" + taglib-ogg-corruption.patch::"https://github.com/taglib/taglib/commit/9336c82d.patch") +sha256sums=('b6d1a5a610aae6ff39d93de5efd0fdc787aa9e9dc1e7026fa4c961b26563526b' + 'bf15f9d99263ca9e3cd96ee16dbfe38ca02932a0e8e2d77696d7188679bda272') prepare() { mkdir -p build + + cd $pkgname-$pkgver + patch -p1 -i ../taglib-ogg-corruption.patch # Fix occasional OGG file corruption } build() {
