mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
SUMMARY="Bible study tool that supports a wide variety of Bibles"
|
|
DESCRIPTION="ScriptureGuide is a Bible study tool. It supports all of the \
|
|
features you'd expect: search, setting the font, taking notes, etc. Through \
|
|
the accompanying ScriptureGuideManager app, you can download hundereds of free \
|
|
copies of various Bibles, commentaries, and related books."
|
|
HOMEPAGE="https://github.com/HaikuArchives/ScriptureGuide"
|
|
COPYRIGHT="2014 ScriptureGuide Team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="https://github.com/HaikuArchives/ScriptureGuide/archive/v0.9.0.tar.gz"
|
|
CHECKSUM_SHA256="63b36186eaf4be130f333e62fa0fb283dbff90149a14763e96c157d9950777b5"
|
|
SOURCE_DIR="ScriptureGuide-$portVersion"
|
|
|
|
ARCHITECTURES="?all !x86_gcc2 x86"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
scriptureguide$secondaryArchSuffix = $portVersion
|
|
app:ScriptureGuide = $portVersion
|
|
app:ScriptureGuideManager = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
icu$secondaryArchSuffix
|
|
cmd:awk
|
|
cmd:unzip
|
|
cmd:wget
|
|
lib:libsword$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
icu${secondaryArchSuffix}_devel
|
|
devel:libsword$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd ScriptureGuide
|
|
make $jobArgs
|
|
cd ../ScriptureGuideManager
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -R App $appsDir
|
|
mv $appsDir/App $appsDir/ScriptureGuide
|
|
|
|
addAppDeskbarSymlink $appsDir/ScriptureGuide/ScriptureGuide
|
|
addAppDeskbarSymlink $appsDir/ScriptureGuide/ScriptureGuideManager
|
|
}
|