wok-next view lzo/receipt @ rev 21449

updated slock (1.1 -> 1.4)
author Hans-G?nter Theisgen
date Thu May 07 07:51:56 2020 +0100 (2020-05-07)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lzo"
4 VERSION="2.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="Data compression library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.oberhumer.com/opensource/lzo/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/lzo.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.oberhumer.com/opensource/lzo/download/$TARBALL"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --enable-shared \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 lzo) copy @std;;
30 *-dev) copy @dev;;
31 esac
32 }