mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-15 05:37:01 +02:00
35 lines
978 B
Bash
35 lines
978 B
Bash
# Template file for 'sleuthkit'
|
|
pkgname=sleuthkit
|
|
version=4.13.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
makedepends="libewf-devel sqlite-devel zlib-devel"
|
|
depends="perl"
|
|
checkdepends="python3 wget"
|
|
short_desc="File system and media management forensic analysis tools"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-only, IPL-1.0, CPL-1.0"
|
|
homepage="https://www.sleuthkit.org/"
|
|
changelog="https://github.com/sleuthkit/sleuthkit/releases"
|
|
distfiles="https://github.com/sleuthkit/sleuthkit/archive/sleuthkit-${version}.tar.gz"
|
|
checksum=08cb3f030fc7c3fd73f5ff418f83be309aa59cd90f146e07b529172271633a08
|
|
|
|
post_extract() {
|
|
sed -i 's:sys/fcntl.h:fcntl.h:g' tsk/fs/tsk_fs_i.h
|
|
}
|
|
|
|
pre_configure() {
|
|
./bootstrap
|
|
}
|
|
|
|
sleuthkit-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|