diff options
-rw-r--r-- | meta-oe/recipes-graphics/xdotool/xdotool_3.20211022.1.bb (renamed from meta-oe/recipes-graphics/xdotool/xdotool_1.20100416.2809.bb) | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/meta-oe/recipes-graphics/xdotool/xdotool_1.20100416.2809.bb b/meta-oe/recipes-graphics/xdotool/xdotool_3.20211022.1.bb index 259c640523..cef82bd348 100644 --- a/meta-oe/recipes-graphics/xdotool/xdotool_1.20100416.2809.bb +++ b/meta-oe/recipes-graphics/xdotool/xdotool_3.20211022.1.bb | |||
@@ -1,23 +1,19 @@ | |||
1 | SUMMARY = "xdotool - command-line X11 automation tool - utilising X11 XTEST interface" | 1 | SUMMARY = "xdotool - command-line X11 automation tool - utilising X11 XTEST interface" |
2 | HOMEPAGE = "http://www.semicomplete.com/projects/xdotool" | 2 | HOMEPAGE = "https://github.com/jordansissel/xdotool" |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2f9cbf7e9401cec8a38666a08851ce6b" | 4 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2f9cbf7e9401cec8a38666a08851ce6b" |
5 | SECTION = "x11" | 5 | SECTION = "x11" |
6 | DEPENDS = "virtual/libx11 libxtst" | 6 | DEPENDS = "virtual/libx11 libxtst libxinerama libxkbcommon" |
7 | |||
8 | PR = "r1" | ||
9 | 7 | ||
10 | inherit features_check pkgconfig perlnative | 8 | inherit features_check pkgconfig perlnative |
11 | # depends on virtual/libx11 | 9 | # depends on virtual/libx11 |
12 | REQUIRED_DISTRO_FEATURES = "x11" | 10 | REQUIRED_DISTRO_FEATURES = "x11" |
13 | 11 | ||
14 | SRC_URI = "http://semicomplete.googlecode.com/files/xdotool-${PV}.tar.gz" | 12 | SRC_URI = "https://github.com/jordansissel/${BPN}/releases/download/v${PV}/${BP}.tar.gz" |
15 | SRC_URI[md5sum] = "1d5be641e512c343abfe5f78b39e6f19" | 13 | SRC_URI[sha256sum] = "96f0facfde6d78eacad35b91b0f46fecd0b35e474c03e00e30da3fdd345f9ada" |
16 | SRC_URI[sha256sum] = "42d7271fbc796e53db71bb221f311b9ff3c51d90a71c9487a9bd3101ca39894f" | ||
17 | 14 | ||
18 | EXTRA_OEMAKE = "PREFIX=${prefix} INSTALLLIB=${libdir} INSTALLMAN=${mandir}" | 15 | EXTRA_OEMAKE = "PREFIX=${prefix} INSTALLLIB=${libdir} INSTALLMAN=${mandir}" |
19 | 16 | ||
20 | do_install() { | 17 | do_install() { |
21 | oe_runmake -e install DESTDIR=${D} PREFIX=${prefix} | 18 | oe_runmake install DESTDIR=${D} PREFIX=${prefix} |
22 | } | 19 | } |
23 | |||