wok view ucl/receipt @ rev 22040

updated tokyocabinet and tokyocabinet-dev (1.4.32 -> 1.4.48)
author Hans-G?nter Theisgen
date Mon Oct 21 17:24:12 2019 +0100 (2019-10-21)
parents 6ee191c3fa9e
children 83b97236db32
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/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --enable-shared $CONFIGURE_ARGS &&
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 }