wok view sleuthkit/receipt @ rev 15957

Add: compiz-plugins-extra + compiz-plugins-unsupported
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 19:58:48 2014 +0100 (2014-02-23)
parents fbd3bf6502b5
children 72d6b168828a
line source
1 # SliTaz package receipt.
3 PACKAGE="sleuthkit"
4 VERSION="3.2.3"
5 CATEGORY="misc"
6 SHORT_DESC="File system and media management forensic analysis tools (supports NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.sleuthkit.org/sleuthkit"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="perl"
14 BUILD_DEPENDS="perl sqlite-dev libpthread-stubs"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --without-libewf \
25 --without-afflib \
26 $CONFIGURE_ARGS &&
27 make LDFLAGS+="-lpthread -ldl" && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/share/tsk3 $fs/usr/share
37 }