diff options
Diffstat (limited to 'meta/recipes-core/ttyrun/ttyrun_2.37.0.bb')
| -rw-r--r-- | meta/recipes-core/ttyrun/ttyrun_2.37.0.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-core/ttyrun/ttyrun_2.37.0.bb b/meta/recipes-core/ttyrun/ttyrun_2.37.0.bb new file mode 100644 index 0000000000..e8fb4831e2 --- /dev/null +++ b/meta/recipes-core/ttyrun/ttyrun_2.37.0.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "Start the program if the specified terminal device is available." | ||
| 2 | DESCRIPTION = "ttyrun is typically used to prevent a respawn through the \ | ||
| 3 | init(8) program when a terminal is not available." | ||
| 4 | HOMEPAGE = "https://github.com/ibm-s390-linux/s390-tools" | ||
| 5 | |||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f5118f167b055bfd7c3450803f1847af" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/ibm-s390-linux/s390-tools;protocol=https;branch=master" | ||
| 10 | SRCREV = "793c037ded98cd001075cdb55a9c58e122380256" | ||
| 11 | |||
| 12 | CVE_PRODUCT = "s390-tools" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | EXTRA_OEMAKE = "\ | ||
| 17 | V=1 \ | ||
| 18 | CC="${CC}" \ | ||
| 19 | DISTRELEASE=${PR} \ | ||
| 20 | " | ||
| 21 | |||
| 22 | # We just want ttyrun and not the rest of s390-utils | ||
| 23 | |||
| 24 | do_configure() { | ||
| 25 | oe_runmake -C ${S}/iucvterm/src clean | ||
| 26 | } | ||
| 27 | |||
| 28 | do_compile() { | ||
| 29 | oe_runmake -C ${S}/iucvterm/src ttyrun | ||
| 30 | } | ||
| 31 | |||
| 32 | do_install() { | ||
| 33 | install -d ${D}${sbindir} | ||
| 34 | install ${S}/iucvterm/src/ttyrun ${D}${sbindir} | ||
| 35 | } | ||
