blob: 47ef000c4d90c38b9213954e350bb4cb08883931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil
class Recipe(recipe.Recipe):
name = 'gettext'
version = '0.18.3.2'
# only libraries are LGPLv2+, tools are GPLv3+ and defined below
licenses = [License.LGPLv2Plus]
stype = SourceType.TARBALL
url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.18.3.2.tar.gz'
srcdir = 'gettext-runtime'
patches = ['gettext/0001-Fix-linker-error-redefinition-of-vasprintf.patch']
platform_deps = {
Platform.DARWIN: ['libiconv'],
Platform.IOS: ['libiconv'],
Platform.WINDOWS: ['mingw-runtime'],
}
files_libs = ['libintl']
files_devel = ['include/libintl.h']
def prepare (self):
intl_path = os.path.join(self.make_dir, 'intl')
self.make = 'cd %s && make' % intl_path
self.make_install = 'cd %s && make PACKAGE=gettext-tools install' % intl_path
if self.config.target_platform == Platform.WINDOWS:
self.configure_options += ' --enable-threads=win32'
if self.config.target_platform != Platform.LINUX:
self.runtime_dep = True
if self.config.target_platform == Platform.IOS:
self.append_env['CFLAGS'] = '-Dlocale_charset=intl_locale_charset'
|