wok-next annotate lzo/receipt @ rev 19675

Update some build dependencies
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 24 12:53:44 2017 +0200 (2017-03-24)
parents 2c07945763bf
children 0c0843e47b2c
rev   line source
erjo@252 1 # SliTaz package receipt.
erjo@252 2
erjo@252 3 PACKAGE="lzo"
pascal@17984 4 VERSION="2.09"
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"
al@19607 9 WEB_SITE="http://www.oberhumer.com/opensource/lzo/"
al@19607 10 HOST_ARCH="i486 arm"
al@19607 11
erjo@252 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19607 13 WGET_URL="${WEB_SITE}download/$TARBALL"
erjo@252 14
erjo@252 15 # Rules to configure and make the package.
erjo@252 16 compile_rules()
erjo@252 17 {
slaxemulator@10154 18 ./configure \
pankso@16381 19 --enable-shared \
al@19607 20 --disable-static \
al@19607 21 --docdir=/usr/share/doc/$PACKAGE-$VERSION \
pankso@16381 22 $CONFIGURE_ARGS &&
al@19607 23 make && make install
erjo@252 24 }
erjo@252 25
erjo@252 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@252 27 genpkg_rules()
erjo@252 28 {
al@19607 29 cook_copy_files *.so*
erjo@252 30 }