wok view libcclc/receipt @ rev 15815

Up: uget to 1.10.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 03:18:28 2014 +0000 (2014-01-24)
parents 557f91b0747c
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="libcclc"
4 VERSION="0.7.0"
5 CATEGORY="development"
6 SHORT_DESC="client library for internet cafe programs"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://ccl.sourceforge.net"
11 WGET_URL="http://nchc.dl.sourceforge.net/project/ccl/libcclc/0.7.0/libcclc-0.7.0.tar.bz2"
12 #WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
14 DEPENDS="openssl sqlite"
15 BUILD_DEPENDS="openssl-dev sqlite-dev file"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }