mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-09 20:33:24 +00:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/gettext/
|
|
TERMUX_PKG_DESCRIPTION="GNU Internationalization utilities"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.23.1"
|
|
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/gettext/gettext-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=c1f97a72a7385b7e71dd07b5fea6cdaf12c9b88b564976b23bd8c11857af2970
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libc++, libiconv, libunistring, libxml2, ncurses"
|
|
TERMUX_PKG_BREAKS="gettext-dev"
|
|
TERMUX_PKG_REPLACES="gettext-dev"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
ac_cv_have_decl_posix_spawn=no
|
|
ac_cv_header_spawn_h=no
|
|
gl_cv_func_working_error=yes
|
|
gl_cv_terminfo_tparm=yes
|
|
--disable-openmp
|
|
--with-included-libcroco
|
|
--with-included-libglib
|
|
--without-included-libxml
|
|
"
|
|
TERMUX_PKG_GROUPS="base-devel"
|
|
|
|
termux_step_pre_configure() {
|
|
if [ $TERMUX_ARCH_BITS = 32 ]; then
|
|
LDFLAGS+=" -Wl,-z,muldefs"
|
|
fi
|
|
}
|
|
|
|
termux_step_post_configure() {
|
|
local pv=$(awk '/^PACKAGE_VERSION =/ { print $3 }' Makefile)
|
|
local lib
|
|
for lib in libgettext{lib,src}; do
|
|
ln -sf ${lib}-${pv}.so $TERMUX_PREFIX/lib/${lib}.so
|
|
done
|
|
}
|