summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri Merejkowsky2021-05-03 16:38:42 +0200
committerRoshless2021-05-03 22:29:58 +0200
commitba2e19a8717fc6f5f86c005c100570bc31351b7b (patch)
tree69c974596962b558937a7bf306b51dd435b7d284
parent518136fe77471566b767196072b405155aea6cc8 (diff)
downloadaur-ba2e19a8717fc6f5f86c005c100570bc31351b7b.tar.gz
upgpkg: lagrange 1.3.4-3
lagrange: build the_Foundation *without* werror Otherwize the build breaks because : * the default /etc/makepkg.conf sets -Wformat, -Werror=format-security * the_Foundation's CMakeLists unsets -Wno-format * a warning is produced * ... and warning are treated as errors Signed-off-by: Roshless <me@roshless.com> up pkgrel
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index afce35671e91..caf9d29a982b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = lagrange
pkgdesc = Beautiful Gemini Client
pkgver = 1.3.4
- pkgrel = 2
+ pkgrel = 3
url = https://git.skyjake.fi/skyjake/lagrange
arch = x86_64
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 33b70e843e2f..6bd0aa00cf40 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Roshless <pkg@roshless.com>
pkgname=lagrange
-pkgrel=2
+pkgrel=3
pkgver=1.3.4
pkgdesc="Beautiful Gemini Client"
url="https://git.skyjake.fi/skyjake/lagrange"
@@ -24,6 +24,7 @@ makedepends=("cmake")
build() {
cmake -B build -S "$pkgname-${pkgver}" \
-DCMAKE_INSTALL_PREFIX='/usr' \
+ -DTFDN_ENABLE_WARN_ERROR=OFF \
-Wno-dev
make -C build
}