blob: e8cc6f93eba7d76ec8801af3d6496cad9b662bcb (
plain)
1 # Description: grsecurity RBAC administration utility
2 # URL: https://grsecurity.net/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5
6 name=gradm
7 version=201701031918
8 release=1
9 source=(https://grsecurity.net/stable/gradm-3.1-$version.tar.gz)
10
11 build() {
12
13 cd $name
14
15 install -d $PKG/etc/udev/rules.d
16
17 make
18 make DESTDIR=$PKG MANDIR=/usr/man install
19
20 rm -r $PKG/dev
21
22 }
|