wok view lzma/receipt @ rev 1013

syslinux: new splash screen
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 08 18:03:06 2008 +0000 (2008-07-08)
parents 49a50d5d40c5
children e64f8e87ea6d
line source
1 # SliTaz package receipt.
3 PACKAGE="lzma"
4 VERSION="4.57"
5 CATEGORY="base-system"
6 SHORT_DESC="Compressor with a high compression ratio."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="lzma$(echo $VERSION | sed 's/\.//').tar.bz2"
9 WEB_SITE="http://sourceforge.net/projects/sevenzip/"
10 WGET_URL="$SF_MIRROR/sevenzip/$TARBALL"
11 DEPENDS="lzlib"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ln -sf . $src
17 patch -p0 < stuff/lzlib.u || return 1
18 cd CPP/7zip/Compress/LZMA_Alone
19 make -f makefile.gcc lzma
20 make -f makefile.gcc liblz.so.1.0.0
21 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a CPP/7zip/Compress/LZMA_Alone/lzma-shared $fs/usr/bin/lzma
29 }