wok view lzo/receipt @ rev 10857

Up: slitaz-boot-scripts (4.5) - Bug fixes and ready for RC
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 14 21:15:16 2011 +0200 (2011-06-14)
parents 02bbaa9d12ba
children 2a5cc8208d36
line source
1 # SliTaz package receipt.
3 PACKAGE="lzo"
4 VERSION="2.05"
5 CATEGORY="system-tools"
6 SHORT_DESC="Data compression library"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/"
10 WGET_URL="http://www.oberhumer.com/opensource/lzo/download/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --enable-shared $CONFIGURE_ARGS &&
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 }