paladin: fix x86_64 build.

* use a correct version.
This commit is contained in:
Jérôme Duval
2016-12-05 20:48:10 +01:00
parent cea5f3c476
commit 7b24032b13
2 changed files with 26 additions and 3 deletions

View File

@@ -0,0 +1,81 @@
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
- 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="http://github.com/HaikuArchives/Paladin"
COPYRIGHT="2001-2010 DarkWyrm
2014 John Scipione"
LICENSE="MIT"
REVISION="1"
commit="5c0071b352eee23a83243fdaa3cbee85c615c441"
SOURCE_URI="https://github.com/HaikuArchives/Paladin/archive/$commit.tar.gz"
CHECKSUM_SHA256="8ac9ca54be8f970ce1a191090f3a1fe94ad04be51810d977fa9d0f77da796d0e"
SOURCE_DIR="Paladin-$commit"
PATCHES="paladin-1.4.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
paladin$secondaryArchSuffix = $portVersion
app:Paladin$secondaryArchSuffix
app:SymbolFinder$secondaryArchSuffix
cmd:luagrep
cmd:luare
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libpcre$secondaryArchSuffix
lib:libz$secondaryArchSuffix
cmd:lua
"
BUILD_REQUIRES="
devel:libpcre$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:gcc$secondaryArchSuffix
cmd:find
cmd:ld$secondaryArchSuffix
cmd:make
makefile_engine
"
USER_SETTINGS_FILES="settings/Paladin_settings"
BUILD()
{
./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/
cp luagrep luare $binDir
addAppDeskbarSymlink $appsDir/Paladin/Paladin Paladin
}