wok-next view ucl/receipt @ rev 19743

Remake/fix: alsa-lib, alsaplayer; update base (LFS) packages: bash, binutils, bison, bzip2, diffutils, file, findutils, gawk, gcc, gettext, glibc, gmp, m4, mpc-library, mpfr, ncurses, patch, xz; update: tazpkg, cookutils, svgcleaner.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 06 17:37:54 2017 +0300 (2017-06-06)
parents 2a21689b0af7
children 0ff6bd677938
line source
1 # SliTaz package receipt.
3 PACKAGE="ucl"
4 VERSION="1.03"
5 CATEGORY="system-tools"
6 SHORT_DESC="Portable lossless data compression library written in ANSI C"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.oberhumer.com/opensource/ucl/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 BUILD_DEPENDS="gfortran"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 while read i; do
20 patch -p1 -i $stuff/patches/$i
21 done < $stuff/patches/series
23 ./configure \
24 --enable-shared \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cook_copy_files *.so*
33 }