wok rev 21914

updated sleuthkit and sleuthkit-dev (3.2.3 -> 4.6.7)
author Hans-G?nter Theisgen
date Fri Oct 04 17:41:01 2019 +0100 (2019-10-04)
parents 5c74e7d74dfc
children 069f60e91eb0
files sleuthkit-dev/receipt sleuthkit/receipt
line diff
     1.1 --- a/sleuthkit-dev/receipt	Fri Oct 04 17:13:54 2019 +0100
     1.2 +++ b/sleuthkit-dev/receipt	Fri Oct 04 17:41:01 2019 +0100
     1.3 @@ -1,21 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="sleuthkit-dev"
     1.7 -VERSION="3.2.3"
     1.8 +VERSION="4.6.7"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files for sleuthkit."
    1.11 +SHORT_DESC="Development files for sleuthkit."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://www.sleuthkit.org/sleuthkit"
    1.15 -WANTED="sleuthkit"
    1.16 +WEB_SITE="https://www.sleuthkit.org/sleuthkit/"
    1.17  
    1.18  DEPENDS="sleuthkit"
    1.19 +WANTED="sleuthkit"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.29 +	cp -a $install/usr/include	$fs/usr
    1.30  }
    1.31 -
     2.1 --- a/sleuthkit/receipt	Fri Oct 04 17:13:54 2019 +0100
     2.2 +++ b/sleuthkit/receipt	Fri Oct 04 17:41:01 2019 +0100
     2.3 @@ -1,38 +1,40 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="sleuthkit"
     2.7 -VERSION="3.2.3"
     2.8 +VERSION="4.6.7"
     2.9  CATEGORY="misc"
    2.10 -SHORT_DESC="File system and media management forensic analysis tools (supports NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)"
    2.11 +SHORT_DESC="File system and media management forensic analysis tools (supports NTFS, FAT, UFS1/2, FFS, Ext2 and Ext3)."
    2.12  MAINTAINER="slaxemulator@gmail.com"
    2.13  LICENSE="GPL2"
    2.14 +WEB_SITE="https://www.sleuthkit.org/sleuthkit/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="http://www.sleuthkit.org/sleuthkit"
    2.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL"
    2.20  
    2.21  DEPENDS="perl"
    2.22 -BUILD_DEPENDS="perl sqlite-dev libpthread-stubs"
    2.23 +BUILD_DEPENDS="libpthread-stubs perl sqlite-dev"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  compile_rules()
    2.27  {
    2.28 -	cd $src
    2.29 -	./configure \
    2.30 -		--prefix=/usr \
    2.31 -		--infodir=/usr/share/info \
    2.32 -		--mandir=/usr/share/man \
    2.33 -		--without-libewf \
    2.34 -		--without-afflib \
    2.35 +	./configure				\
    2.36 +		--prefix=/usr			\
    2.37 +		--infodir=/usr/share/info	\
    2.38 +		--mandir=/usr/share/man		\
    2.39 +		--without-libewf		\
    2.40 +		--without-afflib		\
    2.41  		$CONFIGURE_ARGS &&
    2.42 -	make LDFLAGS+="-lpthread -ldl" && make DESTDIR=$DESTDIR install
    2.43 +	make LDFLAGS+="-lpthread -ldl" &&
    2.44 +	make DESTDIR=$DESTDIR install
    2.45  }
    2.46  
    2.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.48  genpkg_rules()
    2.49  {
    2.50 -	mkdir -p $fs/usr/lib $fs/usr/share
    2.51 -	cp -a $install/usr/bin $fs/usr
    2.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.53 -	cp -a $install/usr/share/tsk3 $fs/usr/share
    2.54 +	mkdir -p $fs/usr/lib
    2.55 +	mkdir -p $fs/usr/share
    2.56 +
    2.57 +	cp -a $install/usr/bin		$fs/usr
    2.58 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.59 +	cp -a $install/usr/share/tsk	$fs/usr/share
    2.60  }
    2.61 -