mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
python/pytsk: Updated for version 20160721.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
aab2e79650
commit
5eeae1c054
3 changed files with 14 additions and 11 deletions
|
@ -2,3 +2,6 @@ pytsk is a Python binding for the SleuthKit.
|
|||
|
||||
The SleuthKit is a forensic file system analysis framework
|
||||
(http://www.sleuthkit.org/), and is available on SBo.
|
||||
|
||||
Optional dependancies include libewf and afflib (on SBo)
|
||||
for image format support.
|
||||
|
|
|
@ -21,16 +21,16 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
# Updated v20160318 March 2016, Barry J. Grundy.
|
||||
# Updated v20160721 August 2016, Barry J. Grundy.
|
||||
|
||||
PRGNAM=pytsk
|
||||
VERSION=${VERSION:-20160318}
|
||||
VERSION=${VERSION:-20160721}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -41,8 +41,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -60,14 +60,14 @@ set -e
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
rm -rf "$PRGNAM"3-$VERSION
|
||||
tar xvf $CWD/"$PRGNAM"3-$VERSION.tar.gz
|
||||
cd "$PRGNAM"3-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
export CC="gcc $SLKCFLAGS $(pkg-config --cflags talloc)"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="pytsk"
|
||||
VERSION="20160318"
|
||||
VERSION="20160721"
|
||||
HOMEPAGE="https://github.com/py4n6/pytsk"
|
||||
DOWNLOAD="https://github.com/py4n6/pytsk/releases/download/20160318/pytsk3-20160318.tar.gz"
|
||||
MD5SUM="9c0559d59493bf34d659aa710a9a5f5a"
|
||||
DOWNLOAD="https://github.com/py4n6/pytsk/releases/download/20160721/pytsk3-20160721.tar.gz"
|
||||
MD5SUM="9b2f263238a871237f84fe8dcfbd4932"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="sleuthkit"
|
||||
REQUIRES=""
|
||||
MAINTAINER="Barry J. Grundy"
|
||||
EMAIL="bgrundy<at>linuxleo.com"
|
||||
|
|
Loading…
Reference in a new issue