From 08400b9232fa9d80b800abe951403329b4292dcb Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Wed, 24 Jun 2015 12:17:41 -0500 Subject: clamav: add new package to [libre] --- libre/clamav/PKGBUILD | 80 +++++++++++++++++++++++++++++++++++++++++ libre/clamav/clamd.conf | 6 ++++ libre/clamav/clamd.service | 11 ++++++ libre/clamav/freshclam.conf | 3 ++ libre/clamav/freshclamd.service | 10 ++++++ libre/clamav/install | 15 ++++++++ libre/clamav/logrotate | 10 ++++++ libre/clamav/tmpfiles.d | 1 + 8 files changed, 136 insertions(+) create mode 100644 libre/clamav/PKGBUILD create mode 100644 libre/clamav/clamd.conf create mode 100644 libre/clamav/clamd.service create mode 100644 libre/clamav/freshclam.conf create mode 100644 libre/clamav/freshclamd.service create mode 100644 libre/clamav/install create mode 100644 libre/clamav/logrotate create mode 100644 libre/clamav/tmpfiles.d (limited to 'libre/clamav') diff --git a/libre/clamav/PKGBUILD b/libre/clamav/PKGBUILD new file mode 100644 index 000000000..fbd3ba5fe --- /dev/null +++ b/libre/clamav/PKGBUILD @@ -0,0 +1,80 @@ +# $Id$ +# Contributor (Arch): Dale Blount +# Contributor (Arch): Gregor Ibic +# Maintainer (Arch): Gaetan Bisson +# Maintainer: Omar Vega Ramos + +_pkgname=clamav-libre +pkgname=clamav +pkgver=0.98.7 +pkgrel=2.parabola1 +pkgdesc='Anti-virus toolkit for Unix' +url='http://www.clamav.net/' +license=('GPL') +arch=('i686' 'x86_64') +makedepends=('libmilter') +depends=('bzip2' 'libltdl' 'gcc-libs') +validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53' + 'F79FB2D08751574C5D3FDFFBB3D5342C260429A0') +mksource=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig}) +source=("https://repo.parabola.nu/other/${_pkgname}/${_pkgname}-${pkgver}.tar.gz" + 'logrotate' + 'tmpfiles.d' + 'clamd.conf' + 'freshclam.conf' + 'clamd.service' + 'freshclamd.service') +mksha1sums=('c9793d67c041e2b944116d912f8681c8bd6e4432' 'SKIP') +sha1sums=('a087b700b20ee6f1723c9975b1e361e4cea1cb46' + 'bb488a56b0f6a0760446cde89c1e3321e2717b78' + 'a224ea9b4d0f4f196827347d54bed51e11c197ea' + '887f624eb305f2446f55d8339e2972ad0cfe2b79' + 'b767837d0279ad30b92c314cb762b73e5ad0415e' + '77899cce83f04cbe134b30da376f879d2841f769' + 'cda9a087e5593992150cb456e34c5f6f589aca82') + +backup=('etc/clamav/clamd.conf' + 'etc/clamav/freshclam.conf' + 'etc/logrotate.d/clamav') + +install=install + +mksource() { + cd "${srcdir}/${pkgname}-${pkgver}" + + #Removing libclamunrar and unrar license (nonfree) + rm -rv libclamunrar + rm -v COPYING.unrar + + #Removing unnecessary win32 folder + rm -rv win32 +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc/clamav \ + --with-dbdir=/var/lib/clamav \ + --disable-clamav \ + --enable-milter \ + --disable-unrar \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -Dm644 ../clamd.conf "${pkgdir}"/etc/clamav/clamd.conf + install -Dm644 ../freshclam.conf "${pkgdir}"/etc/clamav/freshclam.conf + install -Dm644 ../freshclamd.service "${pkgdir}"/usr/lib/systemd/system/freshclamd.service + install -Dm644 ../clamd.service "${pkgdir}"/usr/lib/systemd/system/clamd.service + install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf + install -Dm644 ../logrotate "${pkgdir}"/etc/logrotate.d/clamav + + install -d -o 64 -g 64 "${pkgdir}"/var/log/clamav + install -d -o 64 -g 64 "${pkgdir}"/var/lib/clamav +} diff --git a/libre/clamav/clamd.conf b/libre/clamav/clamd.conf new file mode 100644 index 000000000..d231ec9f0 --- /dev/null +++ b/libre/clamav/clamd.conf @@ -0,0 +1,6 @@ +LogFile /var/log/clamav/clamd.log +LogTime yes +PidFile /run/clamav/clamd.pid +TemporaryDirectory /tmp +LocalSocket /var/lib/clamav/clamd.sock +User clamav diff --git a/libre/clamav/clamd.service b/libre/clamav/clamd.service new file mode 100644 index 000000000..ac9e789ae --- /dev/null +++ b/libre/clamav/clamd.service @@ -0,0 +1,11 @@ +[Unit] +Description=clamav daemon +After=network.target + +[Service] +Type=forking +PIDFile=/run/clamav/clamd.pid +ExecStart=/usr/bin/clamd + +[Install] +WantedBy=multi-user.target diff --git a/libre/clamav/freshclam.conf b/libre/clamav/freshclam.conf new file mode 100644 index 000000000..db513fd3e --- /dev/null +++ b/libre/clamav/freshclam.conf @@ -0,0 +1,3 @@ +UpdateLogFile /var/log/clamav/freshclam.log +DatabaseMirror database.clamav.net +NotifyClamd /etc/clamav/clamd.conf diff --git a/libre/clamav/freshclamd.service b/libre/clamav/freshclamd.service new file mode 100644 index 000000000..a0a72c2e6 --- /dev/null +++ b/libre/clamav/freshclamd.service @@ -0,0 +1,10 @@ +[Unit] +Description=clamav updater + +[Service] +Type=forking +PIDFile=/run/clamav/freshclam.pid +ExecStart=/usr/bin/freshclam -d -p /run/clamav/freshclam.pid + +[Install] +WantedBy=multi-user.target diff --git a/libre/clamav/install b/libre/clamav/install new file mode 100644 index 000000000..1a0653e2a --- /dev/null +++ b/libre/clamav/install @@ -0,0 +1,15 @@ +post_upgrade() { + systemd-tmpfiles --create clamav.conf +} + +post_install() { + getent group clamav &>/dev/null || groupadd -r -g 64 clamav >/dev/null + getent passwd clamav &>/dev/null || useradd -r -u 64 -g clamav -d /dev/null -s /bin/false -c "Clam AntiVirus" clamav >/dev/null + post_upgrade +} + +post_remove() { + getent passwd clamav &>/dev/null && userdel clamav >/dev/null + getent group clamav &>/dev/null && groupdel clamav >/dev/null + return 0 +} diff --git a/libre/clamav/logrotate b/libre/clamav/logrotate new file mode 100644 index 000000000..5f6d87d29 --- /dev/null +++ b/libre/clamav/logrotate @@ -0,0 +1,10 @@ +/var/log/clamav/clamd.log /var/log/clamav/freshclam.log { + create 644 clamav clamav + sharedscripts + missingok + notifempty + postrotate + /bin/kill -HUP `cat /run/clamav/clamd.pid 2>/dev/null` 2> /dev/null || true + /bin/kill -HUP `cat /run/clamav/freshclam.pid 2>/dev/null` 2> /dev/null || true + endscript +} diff --git a/libre/clamav/tmpfiles.d b/libre/clamav/tmpfiles.d new file mode 100644 index 000000000..22d29941e --- /dev/null +++ b/libre/clamav/tmpfiles.d @@ -0,0 +1 @@ +d /run/clamav 0755 clamav clamav -- cgit v1.2.3