wok-next view sleuthkit/receipt @ rev 20784
update also: gpgme, libgpg-error and gpa
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sat Jun 09 06:52:39 2018 +0000 (2018-06-09) |
parents | 9e5dca6702bf |
children | d5aab818505e |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sleuthkit"
4 VERSION="3.2.3"
5 CATEGORY="misc"
6 SHORT_DESC="File system and media management forensic analysis tools (supports \
7 NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)"
8 MAINTAINER="slaxemulator@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.sleuthkit.org/sleuthkit"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="perl sqlite3-dev libpthread-stubs"
16 SPLIT="sleuthkit-dev"
18 compile_rules() {
19 ./configure \
20 --without-libewf \
21 --without-afflib \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make LDFLAGS+="-lpthread -ldl" &&
25 make DESTDIR=$DESTDIR install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 sleuthkit)
31 copy @std
32 DEPENDS="perl"
33 ;;
34 *-dev)
35 copy @dev
36 ;;
37 esac
38 }