1SUMMARY = "A privileged helper for utmp/wtmp updates" 2DESCRIPTION = "\ 3This library provides interface for terminal emulators such as \ 4screen and xterm to record user sessions to utmp and wtmp files." 5HOMEPAGE = "ftp://ftp.altlinux.org/pub/people/ldv/utempter" 6SECTION = "System Environment/Libraries" 7LICENSE = "GPL-2.0-only & GPL-2.0-or-later & LGPL-2.0-only & MIT" 8LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" 9 10SRCREV = "3ef74fff310f09e2601e241b9f042cd39d591018" 11PV = "1.1.6-alt2+git${SRCPV}" 12 13SRC_URI = "git://git.altlinux.org/people/ldv/packages/libutempter.git;branch=master \ 14 file://0001-Fix-macro-error.patch \ 15 file://0002-Proper-macro-path-generation.patch \ 16 file://libutempter-remove-glibc-assumption.patch \ 17 " 18 19S = "${WORKDIR}/git/${BPN}" 20 21CFLAGS += "-DLIBEXECDIR=${libexecdir}" 22 23do_compile() { 24 oe_runmake \ 25 libdir=${libdir} \ 26 libexecdir=${libexecdir} 27} 28 29do_install() { 30 oe_runmake install \ 31 DESTDIR=${D} \ 32 libdir="${libdir}" \ 33 libexecdir="${libexecdir}" \ 34 includedir=${includedir} \ 35 mandir=${mandir} 36 37 rm -f ${D}${libdir}/*.a 38} 39 40FILES:${PN} = "${libdir}/*.so.*" 41FILES:${PN} += "${libexecdir}/utempter/utempter" 42FILES:${PN}-dbg += "${libexecdir}/utempter/.debug/utempter" 43