diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/sleuthkit/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/sleuthkit/APKBUILD b/community/sleuthkit/APKBUILD index d5c7dc8fc8..34bc707df7 100644 --- a/community/sleuthkit/APKBUILD +++ b/community/sleuthkit/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=sleuthkit pkgver=4.3.0 -pkgrel=0 +pkgrel=1 pkgdesc="File system and media management forensic analysis tools" arch="all" license="custom" @@ -36,6 +36,8 @@ prepare() { build() { cd "$_builddir" ./configure --prefix=/usr + # https://github.com/sleuthkit/sleuthkit/issues/642 + export CFLAGS="$CFLAGS -DHAVE_LIBEWF_V2_API -Dlibewf_handle_read_random=libewf_handle_read_buffer_at_offset" make || return 1 } |