getopt, gettext added

This commit is contained in:
2015-01-26 18:39:32 +01:00
parent d9be0b6af2
commit bcb6d75bcb
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1 @@
../System/getopt.build

24
scripts/Tools/gettext.build Executable file
View File

@@ -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