summaryrefslogtreecommitdiff
path: root/testing/clamav/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-30 00:01:15 +0000
committerroot <root@rshg054.dnsready.net>2012-03-30 00:01:15 +0000
commit263884f95012e159a0be10444ef96bbf56e70545 (patch)
treea71c47be511babbe957d4f4701b12d0039b09f88 /testing/clamav/PKGBUILD
parent44ded298ebb49500d321ac79b7d0d8bb4d5058ec (diff)
Fri Mar 30 00:01:15 UTC 2012
Diffstat (limited to 'testing/clamav/PKGBUILD')
-rw-r--r--testing/clamav/PKGBUILD61
1 files changed, 61 insertions, 0 deletions
diff --git a/testing/clamav/PKGBUILD b/testing/clamav/PKGBUILD
new file mode 100644
index 000000000..4646e77a4
--- /dev/null
+++ b/testing/clamav/PKGBUILD
@@ -0,0 +1,61 @@
+# $Id: PKGBUILD 154473 2012-03-28 23:18:37Z bisson $
+# Contributor: Dale Blount <dale@archlinux.org>
+# Contributor: Gregor Ibic <gregor.ibic@intelicom.si>
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+
+pkgname=clamav
+pkgver=0.97.4
+pkgrel=2
+pkgdesc='Anti-virus toolkit for Unix'
+url='http://www.clamav.net/'
+license=('GPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+depends=('bzip2' 'libltdl')
+backup=('etc/clamav/clamd.conf' 'etc/clamav/freshclam.conf' 'etc/conf.d/clamav')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+ 'rc.d'
+ 'conf.d'
+ 'logrotate'
+ 'tmpfiles.d'
+ 'config.patch')
+sha1sums=('56f90cf8a73acba8f97beca86b42c65c3923935d'
+ 'c9d508c1e5972f0f849d8694c1872455fa9e74de'
+ 'cb116cdab49a810381a515cbcfb6a6c148547f07'
+ '7cace58743a36dae3e63e5e0c6cc73ea5ef9a6ee'
+ 'a224ea9b4d0f4f196827347d54bed51e11c197ea'
+ '1c8ef193919b041135115170acd6313f008de808')
+
+install=install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ patch -p1 -i ../config.patch
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc/clamav \
+ --with-dbdir=/var/lib/clamav \
+ --disable-clamav \
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ # Make sure conf files get installed, because make install
+ # doesn't do that if clamav is already installed upon building.
+ install -D -m644 etc/clamd.conf "${pkgdir}/etc/clamav/clamd.conf"
+ install -D -m644 etc/freshclam.conf "${pkgdir}/etc/clamav/freshclam.conf"
+
+ install -D -m644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/clamav.conf"
+ install -D -m644 ../logrotate "${pkgdir}/etc/logrotate.d/clamav"
+ install -D -m644 ../conf.d "${pkgdir}/etc/conf.d/clamav"
+ install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/clamav"
+
+ # Un-distribute databases to require freshclam.
+ rm "${pkgdir}"/var/lib/clamav/*.cvd
+}