diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2022-03-21 21:39:29 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-24 09:45:25 -0700 |
commit | 223c08a9a73a9dd1f4af59dc98382e4e511311c7 (patch) | |
tree | 539f9c576bfccfbd97c7f5209e1a954e9f9cecb5 | |
parent | 825cd3679770810eca84bb30b26000ca3816fc7a (diff) | |
download | meta-openembedded-223c08a9a73a9dd1f4af59dc98382e4e511311c7.tar.gz |
xbindkeys: Add recipe
xbindkeys is an application that allows you to launch shell
commands with your keyboard or your mouse under X Window. It links
commands to keys or mouse buttons, using a configuration file. It
is independant of the window manager and can capture all keyboard
keys.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/xbindkeys/xbindkeys_1.8.7.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xbindkeys/xbindkeys_1.8.7.bb b/meta-oe/recipes-graphics/xbindkeys/xbindkeys_1.8.7.bb new file mode 100644 index 0000000000..0c316edf95 --- /dev/null +++ b/meta-oe/recipes-graphics/xbindkeys/xbindkeys_1.8.7.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "xbindkeys - Tool for launching commands on keystrokes" | ||
2 | HOMEPAGE = "http://www.nongnu.org/xbindkeys/xbindkeys.html" | ||
3 | LICENSE = "GPL-2.0-only" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=7d715d0b23c4bd9265b7435f546e9fe8" | ||
5 | SECTION = "x11" | ||
6 | |||
7 | DEPENDS = "virtual/libx11" | ||
8 | |||
9 | inherit features_check autotools | ||
10 | |||
11 | # depends on virtual/libx11 | ||
12 | REQUIRED_DISTRO_FEATURES = "x11" | ||
13 | |||
14 | SRC_URI = "http://www.nongnu.org/xbindkeys/xbindkeys-${PV}.tar.gz" | ||
15 | SRC_URI[md5sum] = "b5e1a9668ba13ff8673836d1d965d951" | ||
16 | SRC_URI[sha256sum] = "a29b86a8ec91d4abc83b420e547da27470847d0efe808aa6e75147aa0adb82f2" | ||
17 | |||
18 | EXTRA_OECONF = "--disable-guile" | ||