Files
haikuports/haiku-apps/catkeyseditor/catkeyseditor-0.1.0.recipe
Raefaldhi Amartya Junior 1f76cce1b0 Fix several broken recipes due to "$(HOMEPAGE)" (#912)
Added new version and removed the old one for beshare,
fix broken thing and reformat the style to follow guidelines:
- belife
- beshare
- catkeyseditor
- colors
- copynametoclipboard
- desknotes
- genesis_commander
2016-12-15 21:05:28 +00: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-2015 Puck Meerburg"
LICENSE="MIT"
REVISION="1"
scrGitRev="3fa4f550ee83a4b64c27571eb518270f9500791b"
SOURCE_URI="$HOMEPAGE/archive/$scrGitRev.tar.gz"
CHECKSUM_SHA256="054c0394572aa7e4c485e7f018544bc2431eaf12d6d64e0a578d5061d1cf00eb"
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
}