0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-05-11 19:03:28 +00:00
Files
termux-packages/packages/distcc/build.sh
Fredrik Fornwall 28abfbfcf9 fix(main/distcc): Fix building with current clang
Fixes the below error:
> error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
> void dcc_read_localslots_configuration()
2024-05-15 02:23:30 +02:00

23 lines
677 B
Bash

TERMUX_PKG_HOMEPAGE=http://distcc.org/
TERMUX_PKG_DESCRIPTION="Distributed C/C++ compiler"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=3.4
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=https://github.com/distcc/distcc/releases/download/v$TERMUX_PKG_VERSION/distcc-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=2b99edda9dad9dbf283933a02eace6de7423fe5650daa4a728c950e5cd37bd7d
TERMUX_PKG_DEPENDS="libpopt"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
--disable-pump-mode
--without-avahi
--without-gtk
--without-libiberty"
termux_step_pre_configure() {
./autogen.sh
CFLAGS+=" -Wno-error=strict-prototypes"
export LIBS="-llog"
}