summaryrefslogtreecommitdiff
path: root/community/libwww
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-28 23:14:50 +0000
committerroot <root@rshg054.dnsready.net>2011-10-28 23:14:50 +0000
commit807f42c30ddb00c4e2d4034ce1720d7cb494e074 (patch)
tree80b0599366bffbfa57def09ed036e6ad635f1796 /community/libwww
parent0424b5fc47f106db6498c4cda3476e1d49fe0f82 (diff)
Fri Oct 28 23:14:50 UTC 2011
Diffstat (limited to 'community/libwww')
-rw-r--r--community/libwww/PKGBUILD20
1 files changed, 10 insertions, 10 deletions
diff --git a/community/libwww/PKGBUILD b/community/libwww/PKGBUILD
index f9a798e45..c26669f7d 100644
--- a/community/libwww/PKGBUILD
+++ b/community/libwww/PKGBUILD
@@ -1,11 +1,14 @@
+# $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=4
+pkgrel=5
pkgdesc="A general-purpose client side WEB API"
arch=('i686' 'x86_64')
url="http://www.w3.org/Library/"
-license=('custom')
+license=('W3C')
depends=()
makedepends=('gcc pkgconfig perl zlib openssl')
options=('!libtool')
@@ -13,13 +16,10 @@ source=(http://www.w3.org/Library/Distribution/w3c-$pkgname-$pkgver.tgz)
md5sums=('c3734ca6caa405707e134cc8c6d7e422')
build() {
- cd "$startdir/src/w3c-$pkgname-$pkgver"
-
- #export ac_cv_header_appkit_appkit_h=no
- [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr --with-md5 --with-zlib --with-expat --with-regex --with-ssl
+ 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 || return 1
- make DESTDIR="$startdir/pkg" install || return 1
-
- install -D -m 0644 COPYRIGHT.html $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT.html
+ make
+ make DESTDIR="$pkgdir" install
}