blob: 24be95c259d57a81815999a87619e92eb9da6a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Contributor (Arch) : Levente Polyak <levente[at]leventepolyak[dot]net>
# Contributor (Arch) : Sébastien Luttringer <seblu@aur.archlinux.org>
# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
pkgname=lynis
pkgver=1.5.6
pkgrel=1
pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
url='http://cisofy.com/lynis/'
license=('GPL3')
arch=('any')
backup=('etc/lynis/default.prf')
depends=('sh')
optdepends=('net-tools: networking tests')
install=lynis.install
source=(http://cisofy.com/files/${pkgname}-${pkgver}.tar.gz)
prepare() {
cd ${pkgname}-${pkgver}
# fix non-test includes to let lynis run as user but complain gracefully
chmod o+rx include
chmod o+r include/*
chmod o-r include/tests_*
}
package() {
cd ${pkgname}-${pkgver}
# install profile
install -Dm 644 default.prf "${pkgdir}/etc/${pkgname}/default.prf"
# install binary
install -Dm 755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
# install plugins, include, db
install -d "${pkgdir}/usr/share/${pkgname}"
cp -a db include plugins "${pkgdir}/usr/share/${pkgname}"
# install doc files
install -d "${pkgdir}/usr/share/doc/${pkgname}"
install -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" README INSTALL CHANGELOG FAQ
# install manpage
install -Dm 644 "${pkgname}.8" "${pkgdir}/usr/share/man/man8/${pkgname}.8"
}
# vim:set ts=2 sw=2 ft=sh et:
|