summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalph Torres2023-12-09 02:44:04 +0000
committerRalph Torres2023-12-09 02:44:04 +0000
commit9837e33ccfdce9cedea1b620804b34fbdca525ef (patch)
tree0af2152cdb3071a0f87c0ed1a3e46e3592b9220e
parent9f489fa5e9f8e06fdc51cb16fa070ee74051f3eb (diff)
downloadaur-tiny-irc-client-git.tar.gz
disable lto
In some machines, building the package fails due to ring crate and (gcc) compiler linking issue. Refer: https://github.com/briansmith/ring/issues/1444
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
2 files changed, 4 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5f6016506bc1..3d2fc33dd14a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = tiny-irc-client-git
pkgdesc = A terminal IRC client written in Rust
pkgver = 0.11.0.r21.65f367e
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/osa1/tiny
arch = x86_64
license = MIT
@@ -10,6 +10,7 @@ pkgbase = tiny-irc-client-git
depends = dbus
provides = tiny-irc-client
conflicts = tiny-irc-client
+ options = !lto
source = git+https://github.com/osa1/tiny
sha512sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 92a67151cfd5..e5ba12c27031 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
_pkgname=tiny-irc-client
pkgname=$_pkgname-git
pkgver=0.11.0.r21.65f367e
-pkgrel=1
+pkgrel=2
pkgdesc='A terminal IRC client written in Rust'
arch=(x86_64)
url=https://github.com/osa1/tiny
@@ -17,6 +17,7 @@ provides=($_pkgname)
conflicts=($_pkgname)
source=(git+$url)
sha512sums=(SKIP)
+options=(!lto)
_pkgname=${_pkgname%-irc-client}