wok annotate gsoap/receipt @ rev 18747

marble: one desktop entry only (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 26 13:11:10 2015 +0100 (2015-12-26)
parents 7bb096863642
children 61564be8a464
rev   line source
slaxemulator@11025 1 # SliTaz package receipt.
slaxemulator@11025 2
slaxemulator@11025 3 PACKAGE="gsoap"
slaxemulator@12348 4 VERSION="2.8.7"
slaxemulator@11025 5 CATEGORY="network"
pankso@12497 6 SHORT_DESC="XML language binding to develop SOAP/XML services in C/C++"
slaxemulator@11025 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15215 8 LICENSE="GPL2"
slaxemulator@11025 9 WEB_SITE="http://www.cs.fsu.edu/~engelen/soap.html"
slaxemulator@11025 10 TARBALL="${PACKAGE}_${VERSION}.zip"
slaxemulator@11025 11 WGET_URL="$SF_MIRROR/gsoap2/$TARBALL"
slaxemulator@11025 12
slaxemulator@11025 13 DEPENDS="libssl zlib"
pascal@12402 14 BUILD_DEPENDS="autoconf automake openssl-dev zlib-dev flex"
slaxemulator@11025 15
slaxemulator@11025 16 # Rules to configure and make the package.
slaxemulator@11025 17 compile_rules()
slaxemulator@11025 18 {
slaxemulator@11025 19 cd $src
pascal@15305 20 sed -i 's/aclocal-.{am__api_version}/aclocal/' configure
pascal@15305 21 sed -i 's/automake-.{am__api_version}/automake/' configure
slaxemulator@11025 22 CXXFLAGS=-fPIC CFLAGS=-fPIC LDFLAGS=-fPIC ./configure \
slaxemulator@11025 23 $CONFIGURE_ARGS && make -j1 && make install
slaxemulator@11025 24 }
slaxemulator@11025 25
slaxemulator@11025 26 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@11025 27 genpkg_rules()
slaxemulator@11025 28 {
slaxemulator@11025 29 mkdir -p $fs/usr/lib $fs/usr/share
slaxemulator@11025 30 cp -a $install/usr/bin $fs/usr
slaxemulator@11025 31 cp -a $install/usr/share/gsoap $fs/usr/share
slaxemulator@11025 32 }