Date: Thursday, November 10, 2022 @ 01:39:49
Author: felixonmars
Revision: 1346327
archrelease: copy trunk to community-staging-x86_64
Added:
xbindkeys/repos/community-staging-x86_64/
xbindkeys/repos/community-staging-x86_64/PKGBUILD
(from rev 1346326, xbindkeys/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: xbindkeys/repos/community-staging-x86_64/PKGBUILD (from rev 1346326,
xbindkeys/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-10 01:39:49 UTC (rev 1346327)
@@ -0,0 +1,34 @@
+# Maintainer: Konstantin Gizdov <arch at kge dot pw>
+# Contributor: Yusuf Aktepe <[email protected]>
+# Contributor: Florian Pritz <[email protected]>
+# Contributor: Daniel J Griffiths <[email protected]>
+# Contributor: Thayer Williams <[email protected]>
+
+pkgname=xbindkeys
+pkgver=1.8.7
+pkgrel=4
+pkgdesc="Launch shell commands with your keyboard or your mouse under X"
+arch=('x86_64')
+url="https://www.nongnu.org/xbindkeys/xbindkeys.html"
+license=('GPL')
+depends=('libx11' 'guile')
+optdepends=('tk: xbindkeys_show')
+source=(https://www.nongnu.org/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('a29b86a8ec91d4abc83b420e547da27470847d0efe808aa6e75147aa0adb82f2')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ # pick up new guile versions
+ autoreconf -vi
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}