summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof AS (3ED)2021-01-05 15:31:04 +0100
committerKrzysztof AS (3ED)2021-01-05 15:31:04 +0100
commit3d9c35be8ced10d9b26b2bfb7329708ec3b94b75 (patch)
treecb51c8d398fbf7bb3fa2d4e091ea1627737b4b09
parent27a17f58b2020c7f6855f536e6dbb16714fb3474 (diff)
downloadaur-3d9c35be8ced10d9b26b2bfb7329708ec3b94b75.tar.gz
"autoconf 2.70 runs intltoolize automatically, but without passing --force, so the autogen.sh script no longer works. The corresponding line in prepare() can be replaced with `test -f configure || INTLTOOLIZE='intltoolize --force' autoreconf --install` instead." - xiretza (2020-12-31)
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 95aa302281de..5f5dbca93590 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ddccontrol
pkgdesc = Control your monitor by software using the DDC/CI protocol
pkgver = 0.4.4
- pkgrel = 7
+ pkgrel = 8
url = https://github.com/ddccontrol/ddccontrol
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 98dd2762c08f..31bdc398b706 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgbase=ddccontrol
pkgname=(ddccontrol gddccontrol)
pkgver=0.4.4
-pkgrel=7
+pkgrel=8
pkgdesc="Control your monitor by software using the DDC/CI protocol"
arch=('i686' 'x86_64')
url="https://github.com/ddccontrol/ddccontrol"
@@ -24,7 +24,7 @@ sha256sums=('aafbb16ac4f4edfe3fcc5feec1eb5729aaf86e3b0f31f9d707ba1406bb404817'
prepare() {
cd "${srcdir}"/${pkgbase}-${pkgver}
patch -Np1 -i ../fix-gcc10-compilation.patch
- test -f configure || ./autogen.sh
+ test -f configure || INTLTOOLIZE='intltoolize --force' autoreconf --install
}
build() {