wok view gsoap/receipt @ rev 12121

up gsoap 2.8.5
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 13 00:45:31 2012 +0100 (2012-03-13)
parents 000fe4a16b6e
children 0e7a8e01fa4f
line source
1 # SliTaz package receipt.
3 PACKAGE="gsoap"
4 VERSION="2.8.5"
5 CATEGORY="network"
6 SHORT_DESC="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++"
7 MAINTAINER="slaxemulator@gmail.com"
8 WEB_SITE="http://www.cs.fsu.edu/~engelen/soap.html"
9 TARBALL="${PACKAGE}_${VERSION}.zip"
10 WGET_URL="$SF_MIRROR/gsoap2/$TARBALL"
12 DEPENDS="libssl zlib"
13 BUILD_DEPENDS="autoconf automake openssl-dev zlib-dev flex"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 CXXFLAGS=-fPIC CFLAGS=-fPIC LDFLAGS=-fPIC ./configure \
20 $CONFIGURE_ARGS && make -j1 && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/share/gsoap $fs/usr/share
29 }