wok-stable view ucl/receipt @ rev 11250

Add: ucl and upx-ucl (opensource version)
author Alexander Medvedev <devl547@gmail.com>
date Mon Nov 07 11:04:50 2011 +0000 (2011-11-07)
parents
children 6ee191c3fa9e
line source
1 # SliTaz package receipt.
3 PACKAGE="ucl"
4 VERSION="1.03"
5 CATEGORY="system-tools"
6 SHORT_DESC="the UCL Compression Library"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.oberhumer.com/opensource/ucl/"
10 WGET_URL="$WEB_SITE/download/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --enable-shared \
18 $CONFIGURE_ARGS &&
19 make $MAKEFLAGS && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 }