diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libwww/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/libwww/PKGBUILD')
-rw-r--r-- | community/libwww/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/libwww/PKGBUILD b/community/libwww/PKGBUILD new file mode 100644 index 000000000..c26669f7d --- /dev/null +++ b/community/libwww/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 57429 2011-10-27 16:42:35Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Buharev Vasilij <buharev.v.p@gmail.com> + +pkgname=libwww +pkgver=5.4.0 +pkgrel=5 +pkgdesc="A general-purpose client side WEB API" +arch=('i686' 'x86_64') +url="http://www.w3.org/Library/" +license=('W3C') +depends=() +makedepends=('gcc pkgconfig perl zlib openssl') +options=('!libtool') +source=(http://www.w3.org/Library/Distribution/w3c-$pkgname-$pkgver.tgz) +md5sums=('c3734ca6caa405707e134cc8c6d7e422') + +build() { + cd "$srcdir/w3c-$pkgname-$pkgver" + [ -f Makefile ] || ./configure --prefix=/usr \ + --with-md5 --with-zlib --with-expat --with-regex --with-ssl + sed -i 's#Examples##' Library/Makefile + make + make DESTDIR="$pkgdir" install +} |