mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
555 B
Bash
21 lines
555 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=selinux-usr-libsemanage
|
||
|
pkgver=1.10.9
|
||
|
pkgrel=1
|
||
|
pkgdesc="selinux userspace (libsemanage)"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.nsa.gov/selinux/index.cfm"
|
||
|
license=('GPL')
|
||
|
depends=(ustr selinux-usr-libselinux)
|
||
|
options=(!emptydirs)
|
||
|
source=(http://www.nsa.gov/selinux/archives/libsemanage-$pkgver.tgz)
|
||
|
md5sums=('e41de7047f1edda502b7eab9a974f605')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/libsemanage-$pkgver
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|