linux-man-pages: Bump version, include posix

This commit is contained in:
Fredrik Fornwall 2016-10-19 17:21:11 -04:00
parent 0149a69d6c
commit 31e9aad497
1 changed files with 13 additions and 4 deletions

View File

@ -1,7 +1,7 @@
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.07
TERMUX_PKG_VERSION=4.08
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:
@ -9,7 +9,16 @@ TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1 share/man/man8 share/man/man7/man.7
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make () {
# Fresh timestamps on files:
make uninstall
termux_step_pre_configure() {
# Bundle posix man pages in same package:
local _POSIX_TARFILE=man-pages-posix-2013-a.tar.xz
if [ ! -f $TERMUX_PKG_CACHEDIR/$_POSIX_TARFILE ]; then
termux_download https://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/$_POSIX_TARFILE \
$TERMUX_PKG_CACHEDIR/$_POSIX_TARFILE
fi
mkdir -p $TERMUX_PKG_TMPDIR/man-pages-posix
cd $TERMUX_PKG_TMPDIR/man-pages-posix
tar xf $TERMUX_PKG_CACHEDIR/$_POSIX_TARFILE
cd man-pages-posix-2013-a
make install
}