updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / squidclamav / PKGBUILD
blob58198576db3f5b7dfb31a53e4ab137532fb71afe
1 # Maintainer: Leandro Costa <lokidarkeden@gmail.com>
3 pkgname=squidclamav
4 pkgver=6.3
5 pkgrel=1
6 pkgdesc='is an antivirus redirector for Squid proxy based on the Awards winnings ClamAv anti-virus toolkit. Using it will help you securing your home or enterprise network web traffic. SquidClamav is the most efficient Squid Redirector antivirus tool for HTTP traffic available for free, it is written in C and can handle thousand of connections. The way to add more securing on your network for free is here.'
8 arch=('i686' 'x86_64')
9 provides=()
10 replaces=()
11 license=('GPL')
12 url='http://squidclamav.darold.net/'
13 depends=('squid' 'clamav' 'curl' 'c-icap')
14 makedepends=('gcc' 'make')
15 options=('')
16 backup=()
17 source=("http://downloads.sourceforge.net/project/squidclamav/squidclamav/${pkgver}/squidclamav-${pkgver}.tar.gz")
18 md5sums=('097a17e5366fd4416e81964ae75ef456')
20 build() {
21     cd ${srcdir}/squidclamav-${pkgver}
22     ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1;
23     make || return 1;
24     make install DESTDIR=${pkgdir} || return 1;