Add recipe for vttest.

Useful for finding bugs in Terminal and other similar apps.
This commit is contained in:
Adrien Destugues
2014-08-13 11:02:11 +02:00
parent d9e1957f38
commit 2d9bd15e4b

View File

@@ -0,0 +1,45 @@
SUMMARY="Test program for terminal emulators"
DESCRIPTION="Vttest tests the compatibility (demonstrates the non-compatibility) \
of so-called \"VT100-compatible\" terminals. In conformance of the good old \
hacker traditions, the only documentation of this program is the source code \
itself. To understand it, you also need a copy of the original VT100 manual \
from DEC.
Additional tests (past version 1.7) are provided for analysis of vt220, vt420 \
terminals, as well as variants of xterm."
HOMEPAGE="http://invisible-island.net/vttest/vttest.html"
COPYRIGHT="1983-1985 Per Lindberg
1996-2014 Thomas E. Dickey
"
ARCHITECTURES="x86_gcc2"
REVISION="1"
LICENSE="BSD (3-clause)"
SRC_URI="ftp://invisible-island.net/vttest/vttest.tar.gz"
CHECKSUM_SHA256="0168aa34061d4470a68b0dd0781a2a9e2bbfb1493e540c99f615b867a11cbf83"
PROVIDES="
vttest = $portVersion
cmd:vttest
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure --omit-dirs "docDir" ./configure
make $jobArgs
}
INSTALL()
{
make install
}