wok-next view libcclc/receipt @ rev 15589
Add some license
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Dec 02 17:47:06 2013 +0000 (2013-12-02) | 
| 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 }