mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libewf: Updated for version 20140608.
Downgrade to version 20140608 for stability and compatibility. Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
1faa82fecf
commit
90d74f93e8
3 changed files with 12 additions and 32 deletions
|
@ -4,24 +4,3 @@ libewf allows you to read media information of EWF
|
|||
files in the SMART (EWF-S01) format and the EnCase (EWF-E01) format.
|
||||
libewf allows reading files created by EnCase 1 to 6, linen and FTK
|
||||
Imager.
|
||||
|
||||
Read or write supported EWF formats:
|
||||
|
||||
- SMART .s01 (EWF-S01)
|
||||
- EnCase .E01 (EWF-E01)
|
||||
|
||||
|
||||
Not supported:
|
||||
|
||||
- .Ex01 (EWF2-Ex01) bzip2 compression (work in progress)
|
||||
- .Ex01 (EWF2-Ex01) encryption
|
||||
|
||||
Read-only supported EWF formats:
|
||||
|
||||
Logical Evidence File (LEF) .L01 (EWF-L01) and .Lx01 (EWF2-Lx01)
|
||||
|
||||
Other features:
|
||||
|
||||
- empty-block compression
|
||||
- read/write access using delta (or shadow) files
|
||||
- write resume
|
||||
|
|
|
@ -22,17 +22,18 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Updated v20150126(exp) March 2015 Barry J. Grundy <bgrundy(at)linuxleo.com
|
||||
# Updated v20140608 August 2016 Barry J. Grundy <bgrundy(at)linuxleo.com
|
||||
# - note this is a downgrade from previous SBo versions for TSK
|
||||
# compatibility.
|
||||
|
||||
PRGNAM=libewf
|
||||
STATUS=${STATUS:-experimental}
|
||||
VERSION=${VERSION:-20150126}
|
||||
VERSION=${VERSION:-20140608}
|
||||
BUILD=${BUILD:-2}
|
||||
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
|
||||
|
@ -43,8 +44,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"
|
||||
|
@ -63,7 +64,7 @@ rm -rf $PKG
|
|||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$STATUS-$VERSION.tar.gz
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
|
@ -91,7 +92,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -ar ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS README* documents/ $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -ar ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS README* documents/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="libewf"
|
||||
VERSION="20150126"
|
||||
VERSION="20140608"
|
||||
HOMEPAGE="https://github.com/libyal/libewf/"
|
||||
DOWNLOAD="http://ponce.cc/slackware/sources/repo/libewf-experimental-20150126.tar.gz"
|
||||
MD5SUM="6d8a804eaecd73205ba758a3af8b7a7a"
|
||||
DOWNLOAD="https://53efc0a7187d0baa489ee347026b8278fe4020f6.googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz"
|
||||
MD5SUM="fdf615f23937fad8e02b60b9e3e5fb35"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue