# package name NAME="picocom" VERSION=3.1 RELEASE=1 # .hint generation CATEGORY="Utils" SUMMARY="Minimal dumb-terminal emulator" DESCRIPTION="picocom was designed to serve as a simple, manual, modem configuration, testing, and debugging tool. It has also served (quite well) as a low-tech \"terminal-window\" to allow operator intervention in PPP connection scripts (something like the ms-windows \"open terminal window before / after dialing\" feature). It could also prove useful in many other similar tasks. It is ideal for embedded systems since its memory footprint is minimal." HOMEPAGE="hhttps://github.com/npat-efault/picocom" LICENSE="GPL-2.0" # source and patch files SRC_URI="https://github.com/npat-efault/${NAME}/archive/refs/tags/${VERSION}.tar.gz" REQUIRES="" BUILD_REQUIRES+="gcc-g++" MAKEOPTS="" # use modified src_compile and src_install src_compile() { cd ${S} lndirs cd ${B} cygmake } src_install() { cd ${B} dobin picocom doman picocom.1 dodoc picocom.1.html }