wok view ucl/receipt @ rev 14053

Add freetuxtv
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 19 18:35:30 2013 +0100 (2013-02-19)
parents b80e7d1d930e
children 2a21689b0af7
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 WEB_SITE="http://www.oberhumer.com/opensource/ucl/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$WEB_SITE/download/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --enable-shared $CONFIGURE_ARGS &&
17 make && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
25 }