blob: 833ad2f81d51b307bc441ef6a57377a2bbabad7c (
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=1
9 source=(https://pax.grsecurity.net/paxctl-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 make
15 make DESTDIR=$PKG MANDIR=/usr/man install
16
17 }
|