mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
SUMMARY="Terminal-based text editor"
|
|
DESCRIPTION="Joe's Own Editor is a full-featured text editor with minimal requirements. \
|
|
It is fully customizable (Emacs, pico or WordStar are preset). Is also has multiple \
|
|
windows, hexadecimal edit mode for binary files or syntax highlighting for more than 40 languages. \
|
|
It also supports mouse for both text and window manipulation."
|
|
HOMEPAGE="http://joe-editor.sourceforge.net/"
|
|
COPYRIGHT="1992, 2004, 2006, 2015 Joseph H. Allen"
|
|
LICENSE="GNU GPL v1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-4.4/joe-4.4.tar.gz"
|
|
CHECKSUM_SHA256="a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979"
|
|
|
|
PATCHES="0001-Fix-gcc2-build.patch"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
joe = $portVersion
|
|
cmd:joe = $portVersion
|
|
cmd:jmacs
|
|
cmd:jpico
|
|
cmd:jstar
|
|
cmd:rjoe
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libncurses
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libncurses
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gawk
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/joe directory keep-old
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|