diff --git a/scripts/Bootstrap/getopt.build b/scripts/Bootstrap/getopt.build new file mode 120000 index 0000000..09718d1 --- /dev/null +++ b/scripts/Bootstrap/getopt.build @@ -0,0 +1 @@ +../System/getopt.build \ No newline at end of file diff --git a/scripts/Tools/gettext.build b/scripts/Tools/gettext.build new file mode 100755 index 0000000..56463f6 --- /dev/null +++ b/scripts/Tools/gettext.build @@ -0,0 +1,24 @@ +#!/bin/bash + +source "$(dirname $0)/../../lib/libem.bash" + +function em.configure() { + "${MODULE_SRCDIR}"/configure \ + --prefix="${PREFIX}" \ + --disable-java \ + --disable-threads \ + --disable-shared \ + --enable-relocatable \ + --disable-openmp \ + --disable-acl \ + --disable-curses \ + --with-included-gettext \ + --without-libiconv-prefix \ + --without-libintl-prefix \ + --with-included-libxml \ + || exit 1 +} + +em.add_to_family 'Tools' +em.set_build_dependencies "${COMPILER}" +em.make_all