Files
haikuports/haiku-apps/pe/pe-2.4.3_hg615.recipe
Ingo Weinhold 6507d4fc77 Update pe recipe
* Add somewhat more useful description.
* PROVIDES: cmd:Pe -> app:Pe
* Move haiku_devel from BUILD_PREREQUIRES to BUILD_REQUIRES.
2013-12-13 15:32:28 +01:00

69 lines
1.1 KiB
Plaintext

SUMMARY="A programmer's editor"
DESCRIPTION="Pe is a native programmer's editor for Haiku. It features syntax
highlighting and a structural view for several programming language, as well
as basic support for Makefile and Jamfile project management."
HOMEPAGE="http://pe-editor.berlios.de/"
LICENSE="
BSD (4-clause)
MIT
"
COPYRIGHT="
1996-2002 Maarteen Hekkelman
2003-2013 Team Pe
"
SRC_URI="hg+http://hg.berlios.de/repos/pe-editor#615"
REVISION="2"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
pe = $portVersion
app:Pe = $portVersion compat >= 2
cmd:lpe = $portVersion compat >= 2
"
REQUIRES="
haiku
lib:libpcre
lib:libpcreposix
"
BUILD_REQUIRES="
haiku_devel
devel:libpcre
devel:libpcreposix
"
BUILD_PREREQUIRES="
cmd:bison
cmd:flex
cmd:gcc
cmd:jam
cmd:ld
"
USER_SETTINGS_FILES="
settings/pe directory
"
BUILD()
{
jam -q
# multi-job builds don't work reliably
}
INSTALL()
{
peDir=$appsDir/Pe
mkdir -p $appsDir
cp -a generated/distro $peDir
cp -a doc $peDir/Documentation
mkdir $binDir
ln -sfn $peDir/lpe $binDir
addAppDeskbarSymlink $peDir/Pe
}