From 6d93aee9211b8942b2f0692ed7d6d459cf2fca1e Mon Sep 17 00:00:00 2001 From: ifurther <55025025+ifurther@users.noreply.github.com> Date: Thu, 7 May 2020 12:57:24 +0000 Subject: [PATCH] new package: sleuthkit (#5255) --- packages/sleuthkit/build.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/sleuthkit/build.sh diff --git a/packages/sleuthkit/build.sh b/packages/sleuthkit/build.sh new file mode 100644 index 000000000..f1c8a3a6a --- /dev/null +++ b/packages/sleuthkit/build.sh @@ -0,0 +1,14 @@ +TERMUX_PKG_HOMEPAGE=https://sleuthkit.org/ +TERMUX_PKG_DESCRIPTION="The Sleuth Kit® (TSK) is a library for digital forensics tools. " +TERMUX_PKG_LICENSE="custom" +TERMUX_PKG_LICENSE_FILE="licenses/*" +TERMUX_PKG_VERSION=4.9.0 +TERMUX_PKG_SRCURL=https://github.com/sleuthkit/sleuthkit/archive/sleuthkit-${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_SHA256=00faf25c8ffd9271b1c144586a4197fa3ed4cefa70adab1d73ad39376ae009fe +TERMUX_PKG_DEPENDS="libsqlite, ncurses" +TERMUX_PKG_BUILD_IN_SRC=true +TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-java" + +termux_step_pre_configure() { + ./bootstrap +}