mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1000 B
BlitzBasic
29 lines
1000 B
BlitzBasic
SUMMARY = "Controls the configuration of serial ports"
|
|
DESCRIPTION = "setserial is a program designed to set and/or report the configuration information associated with a serial port"
|
|
HOMEPAGE = "http://setserial.sourceforge.net"
|
|
SECTION = "console/utils"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://version.h;beginline=1;endline=6;md5=2e7c59cb9e57e356ae81f50f4e4dfd99"
|
|
|
|
DEPENDS += "groff-native"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${BPN}-${PV}.tar.gz \
|
|
file://add_stdlib.patch \
|
|
file://ldflags.patch \
|
|
file://0001-setserial.c-Add-needed-system-headers-for-ioctl-and-.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "c4867d72c41564318e0107745eb7a0f2"
|
|
SRC_URI[sha256sum] = "7e4487d320ac31558563424189435d396ddf77953bb23111a17a3d1487b5794a"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -d ${D}${mandir}/man8
|
|
|
|
install -m 0755 ${S}/setserial ${D}${bindir}
|
|
install -m 0644 ${S}/setserial.8 ${D}${mandir}/man8
|
|
}
|