Files
haikuports/app-editors/se/se-3.0.1.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

49 lines
878 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
SUMMARY="Screen oriented version of ed"
DESCRIPTION="se (Screen Editor) is a screen oriented version of the classic \
UNIX text editor ed. Its similar to vi as both are modal editors with curses \
interfaces. However, it differs from vi in that it has the same command \
syntax as ed."
HOMEPAGE="http://se-editor.org/"
COPYRIGHT="2013 Thomas Cort"
LICENSE="Public Domain"
REVISION="2"
SOURCE_URI="http://se-editor.org/dist/se-$portVersion.tar.gz"
CHECKSUM_SHA256="e20d1c4d73dee45d319a086ccb54157f1bd94029af9d60c785f651246e209486"
ARCHITECTURES="all"
PROVIDES="
se
cmd:scriptse
cmd:se
"
REQUIRES="
haiku
lib:libncurses
"
BUILD_REQUIRES="
haiku_devel
devel:libncurses
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:awk
cmd:gcc
cmd:make
cmd:pkg_config
"
BUILD()
{
autoreconf -vfi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}