From 5e190dd4b301b23816f6932aa748893089fd2fd6 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 5 Jan 2017 13:57:52 -0500 Subject: [PATCH] getconf: Add package --- packages/getconf/build.sh | 6 ++++++ packages/linux-man-pages/build.sh | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 packages/getconf/build.sh diff --git a/packages/getconf/build.sh b/packages/getconf/build.sh new file mode 100644 index 000000000..a32a69914 --- /dev/null +++ b/packages/getconf/build.sh @@ -0,0 +1,6 @@ +TERMUX_PKG_HOMEPAGE=https://github.com/termux/getconf +TERMUX_PKG_DESCRIPTION="Utility to print configuration values" +TERMUX_PKG_VERSION=0.2 +TERMUX_PKG_SRCURL=https://github.com/termux/getconf/archive/v${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_FOLDERNAME=getconf-$TERMUX_PKG_VERSION +TERMUX_PKG_BUILD_IN_SRC=yes diff --git a/packages/linux-man-pages/build.sh b/packages/linux-man-pages/build.sh index 99f3b8863..2cacfd24c 100644 --- a/packages/linux-man-pages/build.sh +++ b/packages/linux-man-pages/build.sh @@ -1,11 +1,12 @@ TERMUX_PKG_HOMEPAGE=https://www.kernel.org/doc/man-pages/ TERMUX_PKG_DESCRIPTION="Man pages for linux kernel and C library interfaces" TERMUX_PKG_DEPENDS="man" -TERMUX_PKG_VERSION=4.08 +TERMUX_PKG_VERSION=4.09 TERMUX_PKG_SRCURL=https://www.kernel.org/pub/linux/docs/man-pages/man-pages-${TERMUX_PKG_VERSION}.tar.xz TERMUX_PKG_EXTRA_MAKE_ARGS="prefix=$TERMUX_PREFIX" # man.7 and mdoc.7 is included with mandoc: -TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1 share/man/man8 share/man/man7/man.7 share/man/man7/mdoc.7" +# getconf man page included with the getconf package: +TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1 share/man/man8 share/man/man7/man.7 share/man/man7/mdoc.7 share/man/man1p/getconf.1p" TERMUX_PKG_PLATFORM_INDEPENDENT=true TERMUX_PKG_BUILD_IN_SRC=true