mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 20:30:53 +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
72 lines
1.9 KiB
Bash
72 lines
1.9 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.mono-project.com/
|
|
TERMUX_PKG_DESCRIPTION="Cross platform, open source .NET framework"
|
|
TERMUX_PKG_LICENSE="custom"
|
|
TERMUX_PKG_LICENSE_FILE="LICENSE"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=6.12.0.199
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://download.mono-project.com/sources/mono/mono-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=c0850d545353a6ba2238d45f0914490c6a14a0017f151d3905b558f033478ef5
|
|
TERMUX_PKG_DEPENDS="krb5, mono-libs, zlib"
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-btls
|
|
--without-ikvm-native
|
|
"
|
|
|
|
termux_pkg_auto_update() {
|
|
local e=0
|
|
local api_url="https://download.mono-project.com/sources/mono"
|
|
local api_url_r=$(curl -s "${api_url}/")
|
|
local r1=$(echo "${api_url_r}" | sed -nE 's/.*mono-(.*).tar.*/\1/p' | sort -V)
|
|
local latest_version=$(echo "${r1}" | tail -n1)
|
|
|
|
[[ -z "${api_url_r}" ]] && e=1
|
|
[[ -z "${r1}" ]] && e=1
|
|
[[ -z "${latest_version}" ]] && e=1
|
|
if [[ "${e}" != 0 ]]; then
|
|
cat <<- EOL >&2
|
|
WARN: Auto update failure!
|
|
api_url_r=${api_url_r}
|
|
r1=${r1}
|
|
latest_version=${latest_version}
|
|
EOL
|
|
return
|
|
fi
|
|
|
|
termux_pkg_upgrade_version "${latest_version}"
|
|
}
|
|
|
|
termux_step_post_get_source() {
|
|
rm -f external/bdwgc/config.status
|
|
}
|
|
|
|
termux_step_host_build() {
|
|
local _PREFIX_FOR_BUILD=$TERMUX_PKG_HOSTBUILD_DIR/prefix
|
|
mkdir -p $_PREFIX_FOR_BUILD
|
|
|
|
$TERMUX_PKG_SRCDIR/configure --prefix=$_PREFIX_FOR_BUILD \
|
|
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS
|
|
make -j $TERMUX_PKG_MAKE_PROCESSES
|
|
make install
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
if [ "$TERMUX_ARCH" == "arm" ]; then
|
|
CFLAGS="${CFLAGS//-mthumb/}"
|
|
fi
|
|
LDFLAGS+=" -lgssapi_krb5"
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
pushd $TERMUX_PKG_HOSTBUILD_DIR/prefix/lib/mono
|
|
find . -name '*.so' -exec rm -f \{\} \;
|
|
rm -f ./4.5/mono-shlib-cop.exe.config
|
|
cp -rT . $TERMUX_PREFIX/lib/mono
|
|
popd
|
|
|
|
# Strip off SOVERSION suffix for shared libraries.
|
|
sed -i -E 's/\.so\.[0-9]+/.so/g' $TERMUX_PREFIX/etc/mono/config
|
|
}
|