# SliTaz package receipt.

PACKAGE="ucl"
VERSION="1.03"
CATEGORY="system-tools"
SHORT_DESC="Portable lossless data compression library written in ANSI C"
MAINTAINER="devl547@gmail.com"
WEB_SITE="http://www.oberhumer.com/opensource/ucl/"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="$WEB_SITE/download/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure --enable-shared $CONFIGURE_ARGS && 
	make && make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}