wok annotate lzo/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
parents 02bbaa9d12ba
children 2a5cc8208d36
rev   line source
erjo@252 1 # SliTaz package receipt.
erjo@252 2
erjo@252 3 PACKAGE="lzo"
slaxemulator@10154 4 VERSION="2.05"
erjo@252 5 CATEGORY="system-tools"
erjo@252 6 SHORT_DESC="Data compression library"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@252 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@252 9 WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/"
erjo@252 10 WGET_URL="http://www.oberhumer.com/opensource/lzo/download/$TARBALL"
erjo@252 11
erjo@252 12 # Rules to configure and make the package.
erjo@252 13 compile_rules()
erjo@252 14 {
erjo@252 15 cd $src
slaxemulator@10154 16 ./configure \
slaxemulator@10154 17 --enable-shared $CONFIGURE_ARGS &&
slaxemulator@10154 18 make && make install
erjo@252 19 }
erjo@252 20
erjo@252 21 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@252 22 genpkg_rules()
erjo@252 23 {
erjo@252 24 mkdir -p $fs/usr/lib
erjo@252 25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@252 26 }
erjo@252 27