new package: hexer

This commit is contained in:
Tee KOBAYASHI 2022-11-30 07:22:31 +09:00 committed by xtkoba
parent 21ca223427
commit 1208051a48
1 changed files with 26 additions and 0 deletions

26
packages/hexer/build.sh Normal file
View File

@ -0,0 +1,26 @@
TERMUX_PKG_HOMEPAGE=https://devel.ringlet.net/editors/hexer/
TERMUX_PKG_DESCRIPTION="A multi-buffer editor for binary files for Unix-like systems that displays its buffer(s) as a hex dump"
TERMUX_PKG_LICENSE="non-free"
TERMUX_PKG_LICENSE_FILE="COPYRIGHT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.0.6
TERMUX_PKG_SRCURL=https://devel.ringlet.net/files/editors/hexer/hexer-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=e6b84ace5283825943f88ce7ec4ae836ec15ba41978b3a858d6d478cfe09ff94
TERMUX_PKG_DEPENDS="ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="
PREFIX=$TERMUX_PREFIX
MANDIR=$TERMUX_PREFIX/share/man/man1
INSTALLBIN=install
"
termux_step_post_configure() {
cat >> config.h <<-EOF
#if defined __ANDROID__ && __ANDROID_API__ < 26
#define getpwent() (NULL)
#define setpwent() ((void)0)
#endif
EOF
make CPPFLAGS= CFLAGS= LDFLAGS= bin2c
}