wok view ucl/receipt @ rev 12145

clutter-gtk: Add libtool into build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Mar 14 07:12:49 2012 -0500 (2012-03-14)
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 }