wok-next view lzo/receipt @ rev 20189

Up mesa17 (17.2.4)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Nov 03 01:04:49 2017 +0100 (2017-11-03)
parents 35a20e111081
children 0e7893ac206d
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="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.oberhumer.com/opensource/lzo/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}download/$TARBALL"
15 SPLIT="lzo-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-shared \
22 --disable-static \
23 --docdir=/usr/share/doc/$PACKAGE-$VERSION \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 lzo) copy @std;;
33 *-dev) copy @dev;;
34 esac
35 }