wok diff sleuthkit/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 3b4e4318134e
children 9c53e96ffd54
line diff
     1.1 --- a/sleuthkit/receipt	Tue Dec 03 18:28:51 2013 +0000
     1.2 +++ b/sleuthkit/receipt	Tue Jan 28 10:03:39 2020 +0100
     1.3 @@ -1,38 +1,40 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="sleuthkit"
     1.7 -VERSION="3.2.3"
     1.8 +VERSION="4.6.7"
     1.9  CATEGORY="misc"
    1.10 -SHORT_DESC="File system and media management forensic analysis tools (supports NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)"
    1.11 +SHORT_DESC="File system and media management forensic analysis tools (supports NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://www.sleuthkit.org/sleuthkit/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://www.sleuthkit.org/sleuthkit"
    1.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL"
    1.20  
    1.21  DEPENDS="perl"
    1.22 -BUILD_DEPENDS="perl sqlite-dev libpthread-stubs"
    1.23 +BUILD_DEPENDS="libpthread-stubs perl sqlite-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	cd $src
    1.29 -	./configure \
    1.30 -		--prefix=/usr \
    1.31 -		--infodir=/usr/share/info \
    1.32 -		--mandir=/usr/share/man \
    1.33 -		--without-libewf \
    1.34 -		--without-afflib \
    1.35 +	./configure				\
    1.36 +		--prefix=/usr			\
    1.37 +		--infodir=/usr/share/info	\
    1.38 +		--mandir=/usr/share/man		\
    1.39 +		--without-libewf		\
    1.40 +		--without-afflib		\
    1.41  		$CONFIGURE_ARGS &&
    1.42 -	make LDFLAGS+="-lpthread -ldl" && make DESTDIR=$DESTDIR install
    1.43 +	make LDFLAGS+="-lpthread -ldl" &&
    1.44 +	make DESTDIR=$DESTDIR install
    1.45  }
    1.46  
    1.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.48  genpkg_rules()
    1.49  {
    1.50 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.51 -	cp -a $install/usr/bin $fs/usr
    1.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.53 -	cp -a $install/usr/share/tsk3 $fs/usr/share
    1.54 +	mkdir -p $fs/usr/lib
    1.55 +	mkdir -p $fs/usr/share
    1.56 +
    1.57 +	cp -a $install/usr/bin		$fs/usr
    1.58 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.59 +	cp -a $install/usr/share/tsk	$fs/usr/share
    1.60  }
    1.61 -