diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-22 19:21:49 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-23 01:46:48 +0100 |
commit | a6b74a34b1574b5ded89728116977ae466959c4a (patch) | |
tree | e20731a4dbd8a1fd1041a660dd2ee9d270db0703 /recipes | |
parent | 69e7b42978cdf09147377fab658122c0316d1589 (diff) |
build-tools: add GNU sed required by gettext-tools on OS X
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/build-tools/gettext-tools.recipe | 2 | ||||
-rw-r--r-- | recipes/build-tools/gnu-sed.recipe | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/recipes/build-tools/gettext-tools.recipe b/recipes/build-tools/gettext-tools.recipe index 254dc35..6130298 100644 --- a/recipes/build-tools/gettext-tools.recipe +++ b/recipes/build-tools/gettext-tools.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): 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']} + platform_deps = {Platform.DARWIN: ['libiconv', 'sed']} configure_options = ' --disable-java --disable-csharp --disable-native-java --without-csv' def prepare(self): diff --git a/recipes/build-tools/gnu-sed.recipe b/recipes/build-tools/gnu-sed.recipe new file mode 100644 index 0000000..11b9347 --- /dev/null +++ b/recipes/build-tools/gnu-sed.recipe @@ -0,0 +1,9 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + + +class Recipe(recipe.Recipe): + name = 'sed' + version = '4.2' + licenses = [License.GPLv2] + stype = SourceType.TARBALL + url = 'http://ftp.gnu.org/gnu/sed/sed-4.2.tar.gz' |