diff options
Diffstat (limited to 'libraries/gumbo-parser/gumbo-parser.SlackBuild')
-rw-r--r-- | libraries/gumbo-parser/gumbo-parser.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libraries/gumbo-parser/gumbo-parser.SlackBuild b/libraries/gumbo-parser/gumbo-parser.SlackBuild index 10807fe1a6..f1337ac6ff 100644 --- a/libraries/gumbo-parser/gumbo-parser.SlackBuild +++ b/libraries/gumbo-parser/gumbo-parser.SlackBuild @@ -7,6 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20250125 bkw: update for v0.13.0. # 20241109 bkw: update for v0.12.1, which is a fork by a different # upstream. the original project's README says "project has been # unmaintained since 2016 and should not be used". using a self-hosted @@ -18,7 +19,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gumbo-parser -VERSION=${VERSION:-0.12.1} +VERSION=${VERSION:-0.13.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -66,6 +67,10 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} + +# 20250125 bkw: yet again, someone insists we need a newer autoconf even +# though the old version works fine. +sed -i '/AC_PREREQ/s,2.72,2.69,' configure.ac + autoreconf -fi CFLAGS="$SLKCFLAGS" \ |