diff options
| -rw-r--r-- | meta-oe/recipes-support/libutempter/libutempter_1.1.6.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libutempter/libutempter_1.1.6.bb b/meta-oe/recipes-support/libutempter/libutempter_1.1.6.bb new file mode 100644 index 0000000000..e1dccd651c --- /dev/null +++ b/meta-oe/recipes-support/libutempter/libutempter_1.1.6.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | SUMMARY = "A privileged helper for utmp/wtmp updates" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | This library provides interface for terminal emulators such as \ | ||
| 4 | screen and xterm to record user sessions to utmp and wtmp files." | ||
| 5 | HOMEPAGE = "ftp://ftp.altlinux.org/pub/people/ldv/utempter" | ||
| 6 | SECTION = "System Environment/Libraries" | ||
| 7 | LICENSE = "GPLv2 GPLv2+ LGPLv2 MIT" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
| 9 | |||
| 10 | SRC_URI = "ftp://ftp.altlinux.org/pub/people/ldv/utempter/${BP}.tar.bz2" | ||
| 11 | SRC_URI[md5sum] = "b43827806923903aba2bc7cd3a2d45b7" | ||
| 12 | SRC_URI[sha256sum] = "b898565f31ced7e5c1fa0a2eaa0f6ff0ed862b5fe375d26375b64bfbdfeac397" | ||
| 13 | |||
| 14 | CFLAGS += "-DLIBEXECDIR=$(libexecdir)" | ||
| 15 | |||
| 16 | do_compile() { | ||
| 17 | oe_runmake \ | ||
| 18 | libdir=${libdir} \ | ||
| 19 | libexecdir=${libexecdir} \ | ||
| 20 | } | ||
| 21 | |||
| 22 | do_install() { | ||
| 23 | oe_runmake install \ | ||
| 24 | DESTDIR=${D} \ | ||
| 25 | libdir="${libdir}" \ | ||
| 26 | libexecdir="${libexecdir}" \ | ||
| 27 | includedir=${includedir} \ | ||
| 28 | mandir=${mandir} | ||
| 29 | |||
| 30 | rm -f ${D}${libdir}/*.a | ||
| 31 | } | ||
| 32 | |||
| 33 | FILES_${PN} = "${libdir}/*.so.*" | ||
| 34 | FILES_${PN} += "${libexecdir}/utempter/utempter" | ||
| 35 | |||
| 36 | FILES_${PN}-dbg += "${libexecdir}/utempter/.debug/utempter" | ||
