diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/locale/tools | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/locale/tools')
-rwxr-xr-x | src/boost/libs/locale/tools/cross-compile-gettext.sh | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/boost/libs/locale/tools/cross-compile-gettext.sh b/src/boost/libs/locale/tools/cross-compile-gettext.sh new file mode 100755 index 00000000..ce8491ba --- /dev/null +++ b/src/boost/libs/locale/tools/cross-compile-gettext.sh @@ -0,0 +1,60 @@ +#!/bin/bash +# +# Copyright (c) 2009-2011 Artyom Beilis (Tonkikh) +# +# Distributed under the Boost Software License, Version 1.0. (See +# accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) +# + + +# Small and Fast Cross Compile Script + +rm -r build +cd build + +BUILD_TYPE=i586-mingw32msvc +GETTEXT_VER=0.18.1.1 +ICONV_VER=1.13.1 + +wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$ICONV_VER.tar.gz || exit 1 +wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$GETTEXT_VER.tar.gz || exit 1 + +tar -xzf libiconv-$ICONV_VER.tar.gz || exit 1 +tar -xzf gettext-$GETTEXT_VER.tar.gz || exit 1 + + +mkdir win32 +PACKAGE_DIR=gettext-tools-static-$GETTEXT_VER +mkdir $PACKAGE_DIR + +PREFIX=`pwd`/win32 + +cd libiconv-$ICONV_VER + +./configure --disable-shared --host=$BUILD_TYPE --prefix=$PREFIX || exit 1 +make -j 4 && make install || exit 1 +cp ./COPYING ../$PACKAGE_DIR/COPYING-libiconv.txt + +cd ../gettext-$GETTEXT_VER + +./configure --disable-shared --host=$BUILD_TYPE --prefix=$PREFIX --with-libiconv-prefix=$PREFIX || exit 1 +cd gettext-tools +make -j 4 && make install || exit 1 +cd .. + +cp ./gettext-tools/gnulib-lib/libxml/COPYING ../$PACKAGE_DIR/COPYING-libxml.txt +cp ./COPYING ../$PACKAGE_DIR/COPYING-gettext.txt + +cd .. + +echo http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$ICONV_VER.tar.gz > $PACKAGE_DIR/sources.txt +echo http://ftp.gnu.org/pub/gnu/gettext/gettext-$GETTEXT_VER.tar.gz >> $PACKAGE_DIR/sources.txt + +cp win32/bin/*.exe $PACKAGE_DIR + +unix2dos $PACKAGE_DIR/*.txt + +zip $PACKAGE_DIR.zip $PACKAGE_DIR/* + +mv $PACKAGE_DIR.zip .. |