0
0
mirror of https://github.com/termux-pacman/glibc-packages.git synced 2024-11-13 13:59:21 +00:00
glibc-packages/gpkg/make/build.sh
Ivan Max f568f513fe
add, fix and upd pkg to gpkg
gpkg/jsoncpp: new pkg (#108)
gpkg/binutils-libs: fixing dependencies
gpkg/libgc: new pkg
gpkg/rhash: new pkg
gpkg/cppdap: new pkg
gpkg/libuv: fix
gpkg/make: new pkg
gpkg/nlohmann-json: new pkg
gpkg/cmake: new pkg
gpkg/libnghttp2: upd to 1.56.0
2023-09-22 15:23:24 +03:00

28 lines
922 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/make/
TERMUX_PKG_DESCRIPTION="Tool to control the generation of non-source files from source files"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux-pacman"
# Update both make and make-guile to the same version in one PR.
TERMUX_PKG_VERSION=4.4.1
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/make/make-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3
TERMUX_PKG_DEPENDS="glibc"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--without-guile"
termux_step_make() {
# Allow to bootstrap make if building on device without make installed.
if $TERMUX_ON_DEVICE_BUILD && [ -z "$(command -v make)" ]; then
./build.sh
else
make -j $TERMUX_MAKE_PROCESSES
fi
}
termux_step_make_install() {
if $TERMUX_ON_DEVICE_BUILD && [ -z "$(command -v make)" ]; then
./make -j 1 install
else
make -j 1 install
fi
}