wok-6.x annotate 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 |
rev | line source |
---|---|
devl547@11250 | 1 # SliTaz package receipt. |
devl547@11250 | 2 |
devl547@11250 | 3 PACKAGE="ucl" |
devl547@11250 | 4 VERSION="1.03" |
devl547@11250 | 5 CATEGORY="system-tools" |
devl547@11250 | 6 SHORT_DESC="the UCL Compression Library" |
devl547@11250 | 7 MAINTAINER="devl547@gmail.com" |
devl547@11250 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@11250 | 9 WEB_SITE="http://www.oberhumer.com/opensource/ucl/" |
devl547@11250 | 10 WGET_URL="$WEB_SITE/download/$TARBALL" |
devl547@11250 | 11 |
devl547@11250 | 12 # Rules to configure and make the package. |
devl547@11250 | 13 compile_rules() |
devl547@11250 | 14 { |
devl547@11250 | 15 cd $src |
devl547@11250 | 16 ./configure \ |
devl547@11250 | 17 --enable-shared \ |
devl547@11250 | 18 $CONFIGURE_ARGS && |
devl547@11250 | 19 make $MAKEFLAGS && make install |
devl547@11250 | 20 } |
devl547@11250 | 21 |
devl547@11250 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@11250 | 23 genpkg_rules() |
devl547@11250 | 24 { |
devl547@11250 | 25 mkdir -p $fs/usr/lib |
devl547@11250 | 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
devl547@11250 | 27 } |