# 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" LICENSE="GPL2" WEB_SITE="http://www.oberhumer.com/opensource/ucl/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/download/$TARBALL" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { cd $src # Use std=gnu89 to compile with gcc > 4.x export CFLAGS="-std=gnu89" ./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 $install/usr/lib/*.so* $fs/usr/lib }