wok annotate lzo/receipt @ rev 20319

Up tazlito (501)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 20 13:28:18 2018 +0200 (2018-05-20)
parents 2c07945763bf
children 3e9a9990c985
rev   line source
erjo@252 1 # SliTaz package receipt.
erjo@252 2
erjo@252 3 PACKAGE="lzo"
pascal@20221 4 VERSION="2.10"
erjo@252 5 CATEGORY="system-tools"
erjo@252 6 SHORT_DESC="Data compression library"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15379 8 LICENSE="GPL2"
erjo@252 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@252 10 WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/"
pascal@17984 11 WGET_URL="$WEB_SITE$TARBALL"
pankso@16381 12 HOST_ARCH="i486 arm"
erjo@252 13
erjo@252 14 # Rules to configure and make the package.
erjo@252 15 compile_rules()
erjo@252 16 {
slaxemulator@10154 17 ./configure \
pankso@16381 18 --enable-shared \
pankso@16381 19 $CONFIGURE_ARGS &&
slaxemulator@10154 20 make && make install
erjo@252 21 }
erjo@252 22
erjo@252 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@252 24 genpkg_rules()
erjo@252 25 {
erjo@252 26 mkdir -p $fs/usr/lib
pascal@15379 27 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@252 28 }