# Maintainer: Nicolas Iooss (nicolas iooss m4x org) # # This PKGBUILD is maintained on https://github.com/archlinuxhardened/selinux. # If you want to help keep it up to date, please open a Pull Request there. pkgname=secilc pkgver=3.6 pkgrel=1 pkgdesc="SELinux Common Intermediate Language Compiler" groups=('selinux') arch=('i686' 'x86_64' 'aarch64') url='https://github.com/SELinuxProject/cil/wiki' license=('custom') makedepends=('xmlto' 'docbook-xml' 'docbook-xsl') checkdepends=('checkpolicy') depends=('libsepol>=3.6') validpgpkeys=( '63191CE94183098689CAB8DB7EF137EC935B0EAF' # Jason Zaman 'B8682847764DF60DF52D992CBC3905F235179CF1' # Petr Lautrbach ) source=("https://github.com/SELinuxProject/selinux/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc}) sha256sums=('462b94179d5c586a30b16c6108d4108e304f3873580041fbfaf35c85bfe7d17e' 'SKIP') build() { cd "${pkgname}-${pkgver}" make all } check() { cd "${pkgname}-${pkgver}" make test } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -Dm 0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }