wok-stable view lzop/receipt @ rev 6616

Fixed mercurial. Need pyconfig.h for mercurial to work. So i added this to python package since pyconfig.h maybe need for more python programs. I also removed all .pyc and .pyo files from python. Removed about 4mb from python by doing that.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 09 20:49:19 2010 +0000 (2010-10-09)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lzop"
4 VERSION="1.02rc1"
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 }