blob: d39b6cfe859db129a9126bfe582d0bef22589453 (
plain)
1 # Description: user-space utility for controlling PaX flags of executables
2 # URL: https://pax.grsecurity.net
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5
6 name=paxctl
7 version=0.9
8 release=2
9 source=(https://pax.grsecurity.net/paxctl-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 make
14 make DESTDIR=$PKG MANDIR=/usr/share/man install
15 }
|