summaryrefslogtreecommitdiff
path: root/libre/paxd-libre/PKGBUILD
blob: 9d41246ca9c82235689a0b21c8af41917ca98eb3 (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
# Maintainer (Arch): Daniel Micay <danielmicay@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: Gaming4JC <gaming4jc2@yahoo.com>

_pkgname=paxd
pkgname=paxd-libre
pkgver=1.1
pkgrel=1
pkgdesc='PaX exception daemon (a libre fork of paxd)'
arch=(i686 x86_64)
url='https://github.com/g4jc/paxd-libre/'
license=(MIT)
replaces=($_pkgname linux-pax-flags)
conflicts=($_pkgname linux-pax-flags)
provides=($_pkgname linux-pax-flags)
depends=(glibc)
makedepends=(git)
source=(git://github.com/g4jc/paxd-libre#tag=$pkgver 10-enable-pax.conf)
md5sums=('SKIP'
         'a40677d2cd39ada4c2560927c67e0ea2')
backup=(etc/paxd-libre.conf)

build() {
  cd $pkgname
  make CC=gcc
}

package() {
  cd $pkgname
  mkdir -p "$pkgdir/usr/lib/systemd/system/sysinit.target.wants"
  make PREFIX=/usr DESTDIR="$pkgdir" install
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -Dm644 ../10-enable-pax.conf "$pkgdir/etc/sysctl.d/10-enable-pax.conf"
}