wok view lzop/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
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 }