wok annotate lzo/receipt @ rev 18814

Add GUI to xsnow and xpenguins
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 14 22:11:10 2016 +0100 (2016-01-14)
parents f498b54a20cd
children 1cc8dfef2917
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"
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 }