termux-packages/packages/tracepath/build.sh
Leonid Pliushch c352216c63 packages: standardize values of several control variables for build.sh
Variables

 TERMUX_PKG_PLATFORM_INDEPENDENT
 TERMUX_DEBUG
 TERMUX_PKG_HAS_DEBUG
 TERMUX_PKG_ESSENTIAL
 TERMUX_SUBPKG_ESSENTIAL
 TERMUX_PKG_NO_STATICSPLIT
 TERMUX_PKG_BUILD_IN_SRC
 TERMUX_PKG_FORCE_CMAKE
 TERMUX_PKG_HOSTBUILD

should not accept arbitrary values for marking them "enabled". Instead
they should accept boolean values which makes them easier to handle and
also makes their meaning clear.

build-package.sh should make decision based on variable's value but not on
whether it is set or empty.

%ci:no-build
2019-08-12 18:49:13 +03:00

39 lines
1.2 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/iputils/iputils
TERMUX_PKG_DESCRIPTION="Tool to trace the network path to a remote host"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_VERSION=20190709
TERMUX_PKG_SRCURL=https://github.com/iputils/iputils/archive/s${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=a15720dd741d7538dd2645f9f516d193636ae4300ff7dbc8bfca757bf166490a
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_configure() {
return
}
termux_step_make() {
return
}
termux_step_make_install() {
CPPFLAGS+=" -DPACKAGE_VERSION=\"$TERMUX_PKG_VERSION\" -DHAVE_ERROR_H"
$CC $CFLAGS $CPPFLAGS $LDFLAGS -o $TERMUX_PREFIX/bin/tracepath iputils_common.c tracepath.c
local MANDIR=$TERMUX_PREFIX/share/man/man8
mkdir -p $MANDIR
cd $TERMUX_PKG_SRCDIR/doc
xsltproc \
--stringparam man.output.quietly 1 \
--stringparam funcsynopsis.style ansi \
--stringparam man.th.extra1.suppress 1 \
--stringparam iputils.version $TERMUX_PKG_VERSION \
custom-man.xsl \
tracepath.xml
cp tracepath.8 $MANDIR/
# Setup traceroute as an alias for tracepath, since traceroute
# requires root which most Termux user does not have, and tracepath
# is probably good enough for most:
(cd $TERMUX_PREFIX/bin && ln -f -s tracepath traceroute)
(cd $MANDIR && ln -f -s tracepath.8 traceroute.8)
}