wok-next diff ucl/receipt @ rev 12789
get-java6-jre: fix generic with tar
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Tue May 15 21:40:57 2012 +0000 (2012-05-15) |
parents | b80e7d1d930e |
children | 2a21689b0af7 |
line diff
1.1 --- a/ucl/receipt Mon Nov 07 11:04:50 2011 +0000 1.2 +++ b/ucl/receipt Tue May 15 21:40:57 2012 +0000 1.3 @@ -3,25 +3,23 @@ 1.4 PACKAGE="ucl" 1.5 VERSION="1.03" 1.6 CATEGORY="system-tools" 1.7 -SHORT_DESC="the UCL Compression Library" 1.8 +SHORT_DESC="Portable lossless data compression library written in ANSI C" 1.9 MAINTAINER="devl547@gmail.com" 1.10 +WEB_SITE="http://www.oberhumer.com/opensource/ucl/" 1.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 -WEB_SITE="http://www.oberhumer.com/opensource/ucl/" 1.13 WGET_URL="$WEB_SITE/download/$TARBALL" 1.14 1.15 # Rules to configure and make the package. 1.16 compile_rules() 1.17 { 1.18 cd $src 1.19 - ./configure \ 1.20 - --enable-shared \ 1.21 - $CONFIGURE_ARGS && 1.22 - make $MAKEFLAGS && make install 1.23 + ./configure --enable-shared $CONFIGURE_ARGS && 1.24 + make && make install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 - mkdir -p $fs/usr/lib 1.31 + mkdir -p $fs/usr/lib 1.32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.33 }