Files
haikuports/haiku-apps/paladin/paladin-2.9.recipe
2024-03-16 18:08:11 +01:00

83 lines
1.9 KiB
Bash

SUMMARY="An open source integrated development environment (IDE)"
DESCRIPTION="Paladin is an open source integrated development environment (IDE) \
modeled after BeOS' BeIDE.
Paladin's feature set includes:
- Command-line build support
- Quick find file with Alt+F
- Multithreaded builds
- Revision control-friendly project files
- More run options for projects
- Explicit support for debugging with gdb under Haiku
- Bundled helper tools
- Streamlined project settings
- Out-of-the-box support for Lex and Yacc
- Support for text and binary resource files
- Projects can include notes and other files that aren't source code
- Project templates
- Out-of-the-box makefile generation
- Integrated source code management
- 1-click project backups"
HOMEPAGE="https://github.com/HaikuArchives/Paladin"
COPYRIGHT="2001-2010 DarkWyrm
2014 John Scipione
2018-2019 Adam Fowler
2023 Michael Brumbelow"
LICENSE="MIT"
REVISION="2"
srcGitRev="8b0cd5b1a9696f4e895953301d9ab06d6d0d4330"
SOURCE_URI="https://github.com/HaikuArchives/Paladin/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="880eb53613c42daf79bc0a14996ca3ab57d34f0dafdded2df9075a00a0e88fed"
SOURCE_DIR="Paladin-$srcGitRev"
ARCHITECTURES="all"
USER_SETTINGS_FILES="settings/Paladin_settings"
PROVIDES="
paladin = $portVersion
app:Paladin
app:SymbolFinder
"
REQUIRES="
haiku
# required by templates
haiku_devel
lib:libpcre
lib:libz
"
BUILD_REQUIRES="
haiku_devel
devel:libpcre
unittest++_devel
devel:libz
"
BUILD_PREREQUIRES="
makefile_engine
cmd:find
cmd:gcc
cmd:ld
cmd:make
"
BUILD()
{
chmod +x buildsuite.sh
./buildsuite.sh $jobs
}
INSTALL()
{
mkdir -p $appsDir/Paladin $appsDir/Paladin/Documentation
mkdir -p $binDir
cp -r Documentation $appsDir/Paladin
rm $appsDir/Paladin/Documentation/KeltFont.zip
cp -r Paladin/Paladin Paladin/Templates $appsDir/Paladin/
cp SymbolFinder/SymbolFinder $appsDir/Paladin/
addAppDeskbarSymlink $appsDir/Paladin/Paladin Paladin
}