summaryrefslogtreecommitdiff
path: root/libre/paxd-libre/PKGBUILD
blob: c67025f093aa8b1f480a71d74a88c7583fa9e8fa (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>
# Maintainer: Luke .R <g4jc@openmailbox.org>

_pkgname=paxd
pkgname=paxd-libre
pkgver=1.10
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=(glib2)
source=($pkgname-$pkgver.tar.gz::https://github.com/g4jc/paxd-libre/archive/$pkgver.tar.gz
	10-enable-pax.conf)
sha1sums=('f263a01419dc78c8256504fb012f1f51aa4473a9'
          '8ee73dd288bc32438078e032dfc50a2f8ea6a5f2')
backup=(etc/paxd-libre.conf)

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

package() {
  cd $pkgname-$pkgver
  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/usr/lib/sysctl.d/10-enable-pax.conf"
}