# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'gettext-tools' version = '0.18.2' licenses = [License.GPLv3] srcdir = 'gettext-tools' stype = SourceType.TARBALL tarball_dirname = 'gettext-%(version)s' url = 'http://ftp.gnu.org/pub/gnu/gettext/gettext-0.18.2.tar.gz' platform_deps = { Platform.DARWIN: ['libiconv', 'sed'], Platform.WINDOWS: ['libiconv'],} configure_options = ' --disable-java --disable-csharp --disable-native-java --without-csv' def prepare(self): if self.config.target_platform == Platform.WINDOWS: self.configure_options += ' --enable-threads=win32'