From 0a4f273945a51bc15d0ad61333863609908b5677 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Fri, 29 May 2015 18:07:23 +0200 Subject: [PATCH] New version of CatKeysEditor --- .../catkeyseditor/catkeyseditor-0.1.1.recipe | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 haiku-apps/catkeyseditor/catkeyseditor-0.1.1.recipe diff --git a/haiku-apps/catkeyseditor/catkeyseditor-0.1.1.recipe b/haiku-apps/catkeyseditor/catkeyseditor-0.1.1.recipe new file mode 100644 index 000000000..a997b88a3 --- /dev/null +++ b/haiku-apps/catkeyseditor/catkeyseditor-0.1.1.recipe @@ -0,0 +1,45 @@ +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" +SRC_URI="git+https://github.com/puckipedia/BeLocalized#989904ff0181147e5fe7e205096f09e1cc4d8bdd" +REVISION="1" +LICENSE="MIT" +COPYRIGHT="2014-2015 Puck Meerburg" + +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 +}