Files
haikuports/dev-util/intltool/intltool-0.40.6.recipe
fbrosson 045baf2f12 intltool: add recipe for 0.51.0 & fix 0.40.6
* Add recipe for 0.51.0
* Fix recipe for 0.40.6 (a $secondaryArchSuffix was missing in PROVIDES)
2016-01-28 14:47:33 +01:00

65 lines
1.7 KiB
Bash

SUMMARY="A set of tools to centralize translation of file formats"
DESCRIPTION="intltool is a set of tools to centralize translation of many \
different file formats using GNU gettext-compatible PO files.
The intltool collection can:
- Extract translatable strings from various source files (.xml.in, glade, \
.desktop.in, .server.in, .oaf.in).
- Collect the extracted strings together with messages from traditional source \
files (.c, .h) in po/PACKAGE.pot.
- Merge back the translations from .po files into .xml, .desktop and oaf \
files. This merge step will happen at build resp. installation time."
HOMEPAGE="http://freedesktop.org/wiki/Software/intltool"
COPYRIGHT="1994-1996, 1999-2002, 2004, 2005 Free Software Foundation, Inc."
LICENSE="GNU GPL v2"
REVISION="4"
SOURCE_URI="ftp://ftp.gnome.org/pub/gnome/sources/intltool/0.40/intltool-0.40.6.tar.gz"
CHECKSUM_SHA256="36cd8fe249d0cc20918b6d4583267208bf74c8d541c67a5fe63316846344f9f7"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
intltool$secondaryArchSuffix = $portVersion
cmd:intltool_extract$secondaryArchSuffix = $portVersion
cmd:intltool_merge$secondaryArchSuffix = $portVersion
cmd:intltool_prepare$secondaryArchSuffix = $portVersion
cmd:intltool_update$secondaryArchSuffix = $portVersion
cmd:intltoolize$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
cmd:file
cmd:perl
xml_parser
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
xml_parser
"
BUILD_PREREQUIRES="
cmd:file
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
cmd:perl
cmd:autoconf
"
BUILD()
{
runConfigure ./configure
make
}
INSTALL()
{
make install
}
TEST()
{
make check
}