diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-01 03:41:36 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-01 03:41:36 +0000 |
commit | 255df859dede38865f63ae0dd0633a4ea4fe9cac (patch) | |
tree | fa7a0c9be04998ed33f6d55a62e88ae6a46fcddb /community/squid/PKGBUILD | |
parent | b1688d0edf774882b5231e199ac1431a9cc8d4ac (diff) |
Thu May 1 03:37:06 UTC 2014
Diffstat (limited to 'community/squid/PKGBUILD')
-rw-r--r-- | community/squid/PKGBUILD | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/community/squid/PKGBUILD b/community/squid/PKGBUILD index 135f4f29e..5ceb3f71a 100644 --- a/community/squid/PKGBUILD +++ b/community/squid/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 106994 2014-03-11 10:20:13Z spupykin $ +# $Id: PKGBUILD 110475 2014-04-30 16:04:37Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Mark Coolen <mark.coolen@gmail.com> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Contributor: Kevin Piche <kevin@archlinux.org> pkgname=squid -pkgver=3.4.4 -pkgrel=1 +pkgver=3.4.4.2 +pkgrel=2 pkgdesc='Full-featured Web proxy cache server' arch=('x86_64' 'i686') url='http://www.squid-cache.org' -depends=('openssl' 'pam' 'cron' 'perl' 'libltdl') +depends=('openssl' 'pam' 'cron' 'perl' 'libltdl' 'libpcap') makedepends=('libcap' 'krb5') license=('GPL') options=('emptydirs') @@ -21,12 +21,19 @@ source=("http://www.squid-cache.org/Versions/v3/3.4/$pkgname-$pkgver.tar.bz2" 'squid.pam' 'squid.cron' 'squid.service' - 'squid.tmpfiles') -md5sums=('f9c7dd495e45042cc162d89cfbb97cc0' + 'squid.tmpfiles' + "ssl.patch::http://bugs.squid-cache.org/attachment.cgi?id=3036") +md5sums=('d9d4a3d414db60e687d99080fbc68d1e' '270977cdd9b47ef44c0c427ab9034777' 'a71425c4951f2e5b640d19e6a5048531' 'ceeb57c69ebb165676219222f109a24e' - 'd243da117c1aee03c0cc6052f023a380') + 'd243da117c1aee03c0cc6052f023a380' + '4a21c881444707586095c4acc238eae6') + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + patch -p0 <$srcdir/ssl.patch +} build() { cd "$srcdir/$pkgname-$pkgver" |