diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/gsoap/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/gsoap/PKGBUILD')
-rw-r--r-- | community/gsoap/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/gsoap/PKGBUILD b/community/gsoap/PKGBUILD new file mode 100644 index 000000000..a0452fa3a --- /dev/null +++ b/community/gsoap/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 93225 2013-06-28 19:02:51Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Tor Krill <tor@krill.nu> +# Contributor: Lee.MaRS <leemars@gmail.com> + +pkgname=gsoap +pkgver=2.8.15 +pkgrel=1 +pkgdesc="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++" +url="http://www.cs.fsu.edu/~engelen/soap.html" +arch=('i686' 'x86_64') +license=('GPL' 'custom') +depends=('openssl' 'zlib' 'gcc-libs') +makedepends=('autoconf' 'automake') +source=(http://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip + LICENSE) +md5sums=('abd244644446ae08d3aa36ece9113ad4' + '27aaa3f5166db94d44044c11a7b2c37b') + +build() { + cd $srcdir/gsoap-2.8 + [ -f Makefile ] || CXXFLAGS=-fPIC CFLAGS=-fPIC LDFLAGS=-fPIC ./configure --prefix=/usr + make -j1 +} + +package() { + cd $srcdir/gsoap-2.8 + make DESTDIR=$pkgdir install + mkdir -p $pkgdir/usr/share/gsoap/import + mkdir -p $pkgdir/usr/share/gsoap/WS + cp -R gsoap/import $pkgdir/usr/share/gsoap/ + cp -R gsoap/WS $pkgdir/usr/share/gsoap/ + install -D ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} |