mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-02 19:15:59 +00:00
Some packages have issues with parallel builds and need to set TERMUX_MAKE_PROCESSES=1. All other build variables that package recipes set are prefixed with TERMUX_PKG, use that for MAKE_PROCESSES as well for consistency. %ci:no-build
20 lines
750 B
Bash
20 lines
750 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.jedsoft.org/slang/
|
|
TERMUX_PKG_DESCRIPTION="S-Lang is a powerful interpreted language"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.3.3
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://www.jedsoft.org/releases/slang/slang-$TERMUX_PKG_VERSION.tar.bz2
|
|
TERMUX_PKG_SHA256=f9145054ae131973c61208ea82486d5dd10e3c5cdad23b7c4a0617743c8f5a18
|
|
TERMUX_PKG_DEPENDS="libiconv, libpng, pcre, oniguruma, zlib"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_CONFFILES="etc/slsh.rc"
|
|
|
|
# Supports only make -j1
|
|
TERMUX_PKG_MAKE_PROCESSES=1
|
|
|
|
termux_step_pre_configure() {
|
|
# Fix: version script assignment of 'SLANG2' to symbol 'SLang_Rline_Quit' failed: symbol not defined
|
|
LDFLAGS+=" -Wl,-undefined-version"
|
|
}
|