summaryrefslogtreecommitdiff
path: root/extra/libproxy
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-07-17 23:11:47 +0000
committerroot <root@rshg047.dnsready.net>2011-07-17 23:11:47 +0000
commitddddf9c453076a407bfdbf3e030e606f31ee2b86 (patch)
treee836f8617981c56d8e16fa5fb285afe5563befd2 /extra/libproxy
parent7500119d8dd5fc921f91aac8222e472477973740 (diff)
Sun Jul 17 23:11:47 UTC 2011
Diffstat (limited to 'extra/libproxy')
-rw-r--r--extra/libproxy/PKGBUILD23
1 files changed, 11 insertions, 12 deletions
diff --git a/extra/libproxy/PKGBUILD b/extra/libproxy/PKGBUILD
index 7fde7ae6d..5b1367bd5 100644
--- a/extra/libproxy/PKGBUILD
+++ b/extra/libproxy/PKGBUILD
@@ -2,40 +2,39 @@
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=libproxy
-pkgver=0.4.6
-pkgrel=7
+pkgver=0.4.7
+pkgrel=1
pkgdesc="A library that provides automatic proxy configuration management"
arch=(i686 x86_64)
license=('LGPL')
depends=('gcc-libs')
-optdepends=('gconf: GNOME configuration module'
- 'kdelibs: KDE configuration module'
+optdepends=('kdelibs: KDE configuration module'
'networkmanager: NetworkManager configuration module'
'perl: Perl bindings'
'python2: Python bindings')
-makedepends=('gconf' 'cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 'perl')
+makedepends=('cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 'perl')
url="http://libproxy.googlecode.com"
source=(http://libproxy.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
options=('!libtool')
-md5sums=('199c6b120baf1f7258a55f38d5ec74f5')
+md5sums=('509e03a488a61cd62bfbaf3ab6a2a7a5')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "${srcdir}"
mkdir build
cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
-DLIBEXEC_INSTALL_DIR=/usr/lib/libproxy \
-DCMAKE_SKIP_RPATH=ON \
-DPERL_VENDORINSTALL=yes \
- -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_BUILD_TYPE=Release \
-DWITH_WEBKIT=OFF \
-DCMAKE_CXX_FLAGS="${CXXFLAGS}" \
- -DCMAKE_C_FLAGS="${CFLAGS}" \
- ..
+ -DCMAKE_C_FLAGS="${CFLAGS}"
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}/build"
+ cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
}