c352216c63
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
14 lines
558 B
Bash
14 lines
558 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.lysator.liu.se/~nisse/misc/
|
|
TERMUX_PKG_DESCRIPTION="Standalone version of arguments parsing functions from GLIBC"
|
|
TERMUX_PKG_LICENSE="LGPL-2.0"
|
|
TERMUX_PKG_VERSION=1.3
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SHA256=dec79694da1319acd2238ce95df57f3680fea2482096e483323fddf3d818d8be
|
|
TERMUX_PKG_SRCURL=https://www.lysator.liu.se/~nisse/misc/argp-standalone-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_NO_STATICSPLIT=true
|
|
|
|
termux_step_post_make_install() {
|
|
cp libargp.a $TERMUX_PREFIX/lib
|
|
cp $TERMUX_PKG_SRCDIR/argp.h $TERMUX_PREFIX/include
|
|
}
|