summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorFabioLolix2021-07-31 23:23:50 +0200
committerFabioLolix2021-07-31 23:23:50 +0200
commit1c70e780bf12e3d305636a303e131f449689c6fb (patch)
treeca79d963076c406a20b92ee3f4cdc4f73cc58407 /PKGBUILD
parent5bc16abf9ce84562311299a77c6145e20f219efa (diff)
downloadaur-1c70e780bf12e3d305636a303e131f449689c6fb.tar.gz
fix build on boost 1.76
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD9
1 files changed, 6 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 699c4ed09e00..5a473db90ae6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,15 +3,17 @@
pkgname=dsf2flac-git
pkgver=r29.b0cf5aa
-pkgrel=2
+pkgrel=3
pkgdesc="Tool for converting DSF to FLAC files."
arch=(x86_64 i686 pentium4 arm armv6h armv7h aarch64)
url="https://github.com/hank/dsf2flac"
license=(GPL2)
depends=(flac boost-libs taglib id3lib)
makedepends=(git boost cmake)
-source=("git+https://github.com/hank/dsf2flac.git")
-sha256sums=('SKIP')
+source=("git+https://github.com/hank/dsf2flac.git"
+ "https://raw.githubusercontent.com/FabioLolix/AUR-artifacts/master/dsf2flac-fix-build-with-boost-1.76.patch")
+sha256sums=('SKIP'
+ 'ecfb109a680f308a9a5da1bc648111f108a05a3031d13c2e0460fbb5d719cc9c')
pkgver() {
cd "$srcdir/dsf2flac"
@@ -20,6 +22,7 @@ pkgver() {
prepare() {
cd "$srcdir/dsf2flac"
+ patch -Np1 -i ../dsf2flac-fix-build-with-boost-1.76.patch
./autogen.sh
}