wok-next view net6/receipt @ rev 16012
syslinux/iso2exe: access both local and isofs namespaces
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Mar 04 21:00:29 2014 +0000 (2014-03-04) | 
| parents | a31505039d6b | 
| children | defb66322971 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="net6"
     4 VERSION="1.3.14"
     5 CATEGORY="network"
     6 SHORT_DESC="Net6 library (TCP protocol abstraction for C++)."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="LGPL2.1"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="http://releases.0x539.de/net6/"
    11 WGET_URL="http://releases.0x539.de/net6/$TARBALL"
    13 DEPENDS="gnutls libgpg-error libgcrypt libsigc++ zlib gcc-lib-base libtasn1"
    14 BUILD_DEPENDS="$DEPENDS gnutls-dev libgpg-error-dev libgcrypt-dev libsigc++-dev \
    15 libtasn1-dev pkg-config p11-kit-dev"
    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 &&
    27 	make DESTDIR=$DESTDIR install
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	mkdir -p $fs/usr/lib
    34 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    35 }