wok view gsoap/receipt @ rev 11088

Up: dbus to 1.4.16.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 02:38:10 2011 +0000 (2011-10-17)
parents
children 000fe4a16b6e
line source
1 # SliTaz package receipt.
3 PACKAGE="gsoap"
4 VERSION="2.8.3"
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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i 's|aclocal-1.10|aclocal|g' missing
20 CXXFLAGS=-fPIC CFLAGS=-fPIC LDFLAGS=-fPIC ./configure \
21 $CONFIGURE_ARGS && make -j1 && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/gsoap $fs/usr/share
30 }