mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
549 B
Bash
21 lines
549 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=selinux-usr-libsepol
|
|
pkgver=1.16.14
|
|
pkgrel=1
|
|
pkgdesc="selinux userspace (libsepol)"
|
|
arch=(i686 x86_64)
|
|
url="http://www.nsa.gov/selinux/index.cfm"
|
|
license=('GPL')
|
|
options=(force)
|
|
depends=()
|
|
#replaces=(selinux-usr-libsepol-svn)
|
|
source=(http://www.nsa.gov/selinux/archives/libsepol-$pkgver.tgz)
|
|
md5sums=('867e57fd83e37ca35bb787d5e5ecdde9')
|
|
|
|
build() {
|
|
cd $srcdir/libsepol-$pkgver
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|