mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Removed the full-stop and repeating package name in SUMMARY. Removed hard line breaks, broke up some very long paragraphs and use bullet lists where possible. All done by browsing through HaikuDepot. There may be (many) more left in the whole haikuports repo... Included 10 extended desriptions done by soyoye14 for GCI 2014 (https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632) Removed/insert whitespace where it seems to be the custom in recipes. Sometimes rearranged elements of a recipe (moving license and copyright up, for example).
73 lines
1.3 KiB
Plaintext
73 lines
1.3 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="https://github.com/olta/pe"
|
|
LICENSE="
|
|
BSD (4-clause)
|
|
MIT
|
|
"
|
|
COPYRIGHT="
|
|
1996-2002 Maarteen Hekkelman
|
|
2003-2014 Team Pe
|
|
"
|
|
srcrev="0f29ad9bd84c14c99a16ebc57f49661e55254ca2"
|
|
SRC_URI="https://github.com/olta/pe/archive/$srcrev.tar.gz"
|
|
CHECKSUM_SHA256="f76b70a1b444582ee537f4a190b788bc63a25d7cd6c759f427c744dbf861b342"
|
|
SOURCE_DIR="pe-$srcrev"
|
|
SRC_FILENAME="pe-$srcrev.tar.gz"
|
|
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PATCHES="pe-$portVersion.patchset"
|
|
|
|
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
|
|
}
|