wok view libcclc/receipt @ rev 17734

dahdi-linux: save firmware as source
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 06 11:23:56 2015 +0100 (2015-03-06)
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 }