Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubosz/6a1b0199313ffb9533ef to your computer and use it in GitHub Desktop.
Save lubosz/6a1b0199313ffb9533ef to your computer and use it in GitHub Desktop.
From a9f6f7314d764221b1f0459173b3f6e66877faf8 Mon Sep 17 00:00:00 2001
From: Lubosz Sarnecki <lubosz.sarnecki@collabora.co.uk>
Date: Mon, 27 Jul 2015 15:55:30 +0200
Subject: [PATCH 2/2] fix bash syntax for mksrcinfo. update .SRCINFO
---
.SRCINFO | 4 +++-
PKGBUILD | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.SRCINFO b/.SRCINFO
index 65662af..8b179de 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = vogl-git
pkgdesc = An OpenGL debugger
- pkgver = 714.a7317fa
+ pkgver = 715.c3a7466
pkgrel = 1
url = https://github.com/ValveSoftware/vogl
install = vogl.install
@@ -18,8 +18,10 @@ pkgbase = vogl-git
optdepends = lib32-vogl-git: trace 32bit applications in 64bit Arch
source = git+https://github.com/ValveSoftware/vogl.git
source = vogl.sh
+ source = 0001-fix-qt-5.5-build-error.patch
md5sums = SKIP
md5sums = c9e00b04f42f293c10cfe3622911d345
+ md5sums = 14d358c27719a4c317f741118b8a23ab
pkgname = vogl-git
diff --git a/PKGBUILD b/PKGBUILD
index aebcffe..3223919 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -18,7 +18,7 @@ source=('git+https://github.com/ValveSoftware/vogl.git' 'vogl.sh' '0001-fix-qt-5
md5sums=('SKIP'
'c9e00b04f42f293c10cfe3622911d345' '14d358c27719a4c317f741118b8a23ab')
-[ $CARCH == 'x86_64' ] && _EXTRAFLAGS="-DBUILD_X64=On" || _EXTRAFLAGS="-DBUILD_X64=Off"
+[[ $CARCH == 'x86_64' ]] && _EXTRAFLAGS="-DBUILD_X64=On" || _EXTRAFLAGS="-DBUILD_X64=Off"
pkgver() {
cd "$srcdir/vogl"
--
2.4.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment