git » iverilog.git » commit 6d756d3

upgpkg: 12.0-1

author Frederik Schwan
2023-04-17 17:20:17 UTC
committer Frederik Schwan
2023-04-17 17:20:17 UTC
parent b3de9ba7a34d65eb67e32e5d8b1bed6b6fc0cc53

upgpkg: 12.0-1

PKGBUILD +8 -4

diff --git a/PKGBUILD b/PKGBUILD
index 08ccdcf..eacf13d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
 # Contributor: Paulo Matias <matias archlinux-br org>
 
 pkgname=iverilog
-pkgver=11.0
-pkgrel=2
+pkgver=12.0
+pkgrel=1
 pkgdesc='Icarus Verilog compiler and simulation tool'
 arch=('x86_64')
 url='https://github.com/steveicarus/iverilog'
@@ -12,12 +12,16 @@ license=('GPL')
 depends=('zlib' 'bzip2')
 makedepends=('gperf' 'git')
 options=('staticlibs')
-source=("git+https://github.com/steveicarus/iverilog#tag=v${pkgver/./_}")
-md5sums=('SKIP')
+source=("git+https://github.com/steveicarus/iverilog#tag=v${pkgver/./_}"
+        fix-string-literal.patch::https://github.com/steveicarus/iverilog/commit/23e51ef7a8e8e4ba42208936e0a6a25901f58c65.patch)
+md5sums=('SKIP'
+         '35359d78199f3093b99436e1370249b3')
 
 prepare() {
   cd "$pkgname"
 
+  patch -Np1 < ../fix-string-literal.patch
+
   aclocal
   autoconf
 }