termux-packages/packages/erlang/build.sh

37 lines
1.2 KiB
Bash
Raw Normal View History

2017-07-17 20:24:18 +02:00
TERMUX_PKG_HOMEPAGE=https://www.erlang.org/
2018-08-26 02:48:28 +02:00
TERMUX_PKG_DESCRIPTION="General-purpose concurrent functional programming language"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="Apache-2.0"
2019-03-30 00:37:27 +01:00
TERMUX_PKG_VERSION=21.3.2
TERMUX_PKG_REVISION=1
2019-03-30 00:37:27 +01:00
TERMUX_PKG_SHA256=962ace7194dd113b9aba50c4a8997c3d2d210b28252c7833bbab19100f2e1914
2017-11-22 16:43:28 +01:00
TERMUX_PKG_SRCURL=https://github.com/erlang/otp/archive/OTP-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_DEPENDS="openssl, ncurses"
TERMUX_PKG_HOSTBUILD="yes"
TERMUX_PKG_BUILD_IN_SRC="yes"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--without-javac --with-ssl=${TERMUX_PREFIX} --with-termcap"
TERMUX_PKG_EXTRA_MAKE_ARGS="noboot"
2018-09-22 21:46:35 +02:00
TERMUX_PKG_KEEP_STATIC_LIBRARIES="true"
TERMUX_PKG_NO_DEVELSPLIT="yes"
termux_step_post_extract_package() {
# We need a host build every time:
rm -Rf "$TERMUX_PKG_HOSTBUILD_DIR"
2017-11-22 16:43:28 +01:00
./otp_build autoconf
}
termux_step_host_build() {
cd $TERMUX_PKG_SRCDIR
./configure --enable-bootstrap-only
make -j "$TERMUX_MAKE_PROCESSES"
}
termux_step_pre_configure() {
2018-07-01 23:19:57 +02:00
(cd erts && autoreconf)
# liblog is needed for syslog usage:
LDFLAGS+=" -llog"
# Put binaries built in termux_step_host_build at start of PATH:
cp bin/*/* $TERMUX_PKG_SRCDIR/bootstrap/bin
export PATH="$TERMUX_PKG_SRCDIR/bootstrap/bin:$PATH"
}