wok-current rev 17412
Add rzip
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Nov 29 12:17:14 2014 +0100 (2014-11-29) |
parents | 80e8762db4bd |
children | 7a3e592e7c6a |
files | memtest/stuff/unlzma.S rzip/receipt |
line diff
1.1 --- a/memtest/stuff/unlzma.S Sat Nov 29 11:40:52 2014 +0100 1.2 +++ b/memtest/stuff/unlzma.S Sat Nov 29 12:17:14 2014 +0100 1.3 @@ -143,7 +143,7 @@ 1.4 #ifdef CHECK_LZMA_HEADER 1.5 cmp.w $0x5A4C, (SI) // lzip header ('LZIP' version:1 dicobits:1) 1.6 je lzip_header 1.7 - cmp.b $0x5D, (SI) // lzma header (0x5D dicosz:4 orgsz:8) 1.8 + cmp.w $0x5D, (SI) // lzma header (0x5D dicosz:4 orgsz:8) 1.9 jne no_header 1.10 add $13-6, SI // skip lzma header 1.11 lzip_header:
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/rzip/receipt Sat Nov 29 12:17:14 2014 +0100 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="rzip" 2.7 +VERSION="2.1" 2.8 +CATEGORY="utilities" 2.9 +SHORT_DESC="A compression program designed for long distance redundencies" 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="https://rzip.samba.org/" 2.14 +WGET_URL="${WEB_SITE}ftp/$PACKAGE/$TARBALL" 2.15 + 2.16 +DEPENDS="bzlib" 2.17 +BUILD_DEPENDS="wget bzip2-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure --prefix=/usr \ 2.23 + --sysconfdir=/etc \ 2.24 + $CONFIGURE_ARGS && 2.25 + make 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/bin 2.32 + cp -a $src/rzip $fs/usr/bin 2.33 +}