wok-current view libcclc/receipt @ rev 20653
Down dietlibc (0.33)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sun Jan 13 10:59:57 2019 +0100 (2019-01-13) | 
| parents | 6c3718ca17b6 | 
| children | 65d7d867e0c1 | 
 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/$VERSION/$TARBALL"
    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 	./configure \
    21 		--prefix=/usr \
    22 		--infodir=/usr/share/info \
    23 		--mandir=/usr/share/man \
    24 		$CONFIGURE_ARGS &&
    25 	make && make DESTDIR=$DESTDIR install
    26 }
    28 # Rules to gen a SliTaz package suitable for Tazpkg.
    29 genpkg_rules()
    30 {
    31 	mkdir -p $fs/usr/lib
    32 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    33 }