26 lines
848 B
Bash
26 lines
848 B
Bash
|
TERMUX_PKG_HOMEPAGE=https://github.com/lsof-org/lsof
|
||
|
TERMUX_PKG_DESCRIPTION="Lists open files for running Unix processes"
|
||
|
TERMUX_PKG_LICENSE="custom"
|
||
|
TERMUX_PKG_VERSION=4.93.2
|
||
|
TERMUX_PKG_SRCURL=https://github.com/lsof-org/lsof/archive/${TERMUX_PKG_VERSION}/lsof-${TERMUX_PKG_VERSION}.tar.gz
|
||
|
TERMUX_PKG_SHA256=3df912bd966fc24dc73ddea3e36a61d79270b21b085936a4caabca56e5b486a2
|
||
|
TERMUX_PKG_DEPENDS="libandroid-support, libtirpc"
|
||
|
TERMUX_PKG_BUILD_IN_SRC=true
|
||
|
|
||
|
termux_step_configure() {
|
||
|
./Configure -n linux
|
||
|
}
|
||
|
|
||
|
termux_step_make() {
|
||
|
make CC="$CC $CFLAGS $CPPFLAGS -I$TERMUX_PREFIX/include/tirpc"
|
||
|
}
|
||
|
|
||
|
termux_step_make_install() {
|
||
|
install -Dm700 -t $TERMUX_PREFIX/bin/ lsof
|
||
|
install -Dm600 Lsof.8 $TERMUX_PREFIX/share/man/man8/lsof.8
|
||
|
}
|
||
|
|
||
|
termux_step_install_license() {
|
||
|
install -Dm600 -t $TERMUX_PREFIX/share/doc/lsof $TERMUX_PKG_BUILDER_DIR/license.txt
|
||
|
}
|