wok-current view lzop/receipt @ rev 13596
get-google-chrome: https+flash-plugin removed
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Thu Nov 08 16:52:28 2012 +0000 (2012-11-08) |
parents | 21b155a7fff1 |
children | 7896f0694ef6 |
line source
1 # SliTaz package receipt.
3 PACKAGE="lzop"
4 VERSION="1.03"
5 CATEGORY="base-system"
6 SHORT_DESC="Compressor with a high compression speed."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.lzop.org/"
10 WGET_URL="${WEB_SITE}download/$TARBALL"
11 DEPENDS="lzo"
12 BUILD_DEPENDS="lzo-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp $src/src/lzop $fs/usr/bin
28 }