Files
haikuports/haiku-apps/catkeyseditor/catkeyseditor-0.1.2.recipe
Humdinger 693fc01895 CatKeysEditor: gcc2-only until PR merged
As it doesn't build under 64bit (no idea about x86) until
the PR https://github.com/puckipedia/BeLocalized/pull/24
is merged, declare gcc2-only.
2017-08-06 17:41:22 +02:00

50 lines
1.2 KiB
Bash

SUMMARY="A tool to translate catkeys used to localize Haiku apps"
DESCRIPTION="With CatKeysEditor you can translate the plain text catalog files \
used to localize Haiku applications.
Simply get the 'en.catkeys' of the application to be localized and rename it \
using the standard two-letter language code of your target, e.g. 'fr.catkeys'. \
Then open it with CatKeysEditor and start translating.
When you're done, you have to recompile the app making use of the new catkeys."
HOMEPAGE="https://github.com/puckipedia/BeLocalized"
COPYRIGHT="2014-2017 Puck Meerburg"
LICENSE="MIT"
REVISION="1"
scrGitRev="ed3655579087fbd099afeb9aaf33903556b2e0f1"
SOURCE_URI="$HOMEPAGE/archive/$scrGitRev.tar.gz"
CHECKSUM_SHA256="481c0c882143194fd54ba0aa67bc69f739e8f0bd2cc7bc40709aaabdac1b7368"
SOURCE_DIR="BeLocalized-$scrGitRev"
ARCHITECTURES="x86_gcc2 ?x86 !x86_64"
PROVIDES="
catkeyseditor = $portVersion
app:CatKeysEditor = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
cd CatKeysEditor
make $jobArgs OBJ_DIR=objects
make bindcatalogs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a CatKeysEditor/objects/CatKeysEditor $appsDir
addAppDeskbarSymlink $appsDir/CatKeysEditor
}