[arch-commits] Commit in lirc/trunk (PKGBUILD)

Antonio Rojas arojas at gemini.archlinux.org
Sun Feb 13 07:18:16 UTC 2022


    Date: Sunday, February 13, 2022 @ 07:18:14
  Author: arojas
Revision: 437063

Fix missing devinput driver (FS#58238)

Modified:
  lirc/trunk/PKGBUILD

----------+
 PKGBUILD |   16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-02-13 00:58:07 UTC (rev 437062)
+++ PKGBUILD	2022-02-13 07:18:14 UTC (rev 437063)
@@ -4,7 +4,7 @@
 pkgname=lirc
 _pkgver=0.10.1
 [[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || pkgver="$_pkgver"
-pkgrel=10
+pkgrel=11
 epoch=1
 pkgdesc="Linux Infrared Remote Control utilities"
 arch=('x86_64')
@@ -12,8 +12,10 @@
 license=('GPL')
 depends=('alsa-lib' 'libx11' 'libftdi' 'libusb-compat')
 makedepends=('help2man' 'alsa-lib' 'libx11' 'libxslt' 'python' 'python-setuptools'
-             'systemd')
-optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+             'python-yaml' 'systemd')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc'
+            'python-gobject: for lirc-setup and irdb-get'
+            'python-yaml: for lirc-setup and irdb-get')
 provides=('lirc-utils')
 conflicts=('lirc-utils')
 replaces=('lirc-utils')
@@ -39,7 +41,13 @@
 build() {
   cd "${srcdir}/lirc-${_pkgver}"
 
-  HAVE_UINPUT=1 ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --localstatedir=/var
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --localstatedir=/var \
+    --enable-devinput \
+    --enable-uinput
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }



More information about the arch-commits mailing list