blob: d1a2fc50cfa86e389924d976984e73024c2b4ca1 (
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
48
49
50
|
# Maintainer: Sorin-Mihai Vârgolici <sorin-mihai@vargolici.com>
# Contributor: Thomas S Hatch <thatch45@gmail.copm>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=aide-selinux
_srcname=aide
pkgver=0.16
pkgrel=4
pkgdesc='A file integrity checker and intrusion detection program.'
arch=('i686' 'x86_64')
url="http://aide.sourceforge.net/"
license=('GPL')
groups=('selinux')
depends=('acl' 'audit' 'libelf' 'libselinux' 'mhash')
conflicts=('aide')
provides=('aide')
backup=('etc/aide.conf')
source=(http://downloads.sourceforge.net/sourceforge/$_srcname/$_srcname-$pkgver.tar.gz{,.asc} \
aide.conf)
md5sums=('25c616f67c667acd4088747ae7f6a9a3'
'SKIP'
'd029f9796de01dc8a791f89ac931d7fb')
validpgpkeys=('2BBBD30FAAB29B3253BCFBA6F6947DAB68E7B931') # Hannes von Haugwitz <hannes@vonhaugwitz.com>
build() {
cd $srcdir/$_srcname-$pkgver
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--with-mhash \
--with-posix-acl \
--with-prelink \
--with-xattr \
--with-zlib \
--with-e2fsattrs \
--with-selinux \
--with-audit \
--disable-static
make
}
package() {
cd $srcdir/$_srcname-$pkgver
make DESTDIR=$pkgdir install
install -D -m644 $srcdir/aide.conf $pkgdir/etc/aide.conf
mkdir -p $pkgdir/var/{log,lib}/aide/
}
|