blob: 9835b4cb6965d0f84bbcba6264151a0d26781aa6 (
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
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=suricata
pkgver=4.1.2
pkgrel=1
pkgdesc="An Open Source Next Generation Intrusion Detection and Prevention Engine"
arch=('i686' 'x86_64')
url="http://suricata-ids.org/"
license=('GPL2')
depends=('libcap-ng' 'libnet' 'libpcap' 'libyaml' 'pcre')
optdepends=('snort: suricata can use rulesets provided by snort')
backup=('etc/suricata/suricata.yaml'
'etc/suricata/classification.config'
'etc/suricata/reference.config')
source=(http://openinfosecfoundation.org/download/$pkgname-$pkgver.tar.gz{,.sig})
validpgpkeys=('801C7171DAC74A6D3A61ED81F7F9B0A300C1B70D') # Open Information Security Foundation
sha256sums=('73575b041a50cc48a2a53f6503ab4d355166d7acbd4997cd04045f848f8bea96'
'SKIP')
build() {
cd "${srcdir}"/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
package() {
cd "${srcdir}"/$pkgname-$pkgver
make DESTDIR="${pkgdir}" install
install -d "${pkgdir}"/var/log/$pkgname
install -Dm644 $pkgname.yaml "${pkgdir}"/etc/$pkgname/$pkgname.yaml
install -Dm644 classification.config "${pkgdir}"/etc/$pkgname/classification.config
install -Dm644 reference.config "${pkgdir}"/etc/$pkgname/reference.config
install -d "${pkgdir}"/etc/$pkgname/rules
install -Dm644 rules/*.rules "${pkgdir}"/etc/$pkgname/rules/
}
|