From 5072cee45a3dc5638ba936dfb4e717bf918b6d06 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 22 Jul 2013 01:12:51 -0700 Subject: Mon Jul 22 01:12:48 PDT 2013 --- community/playpen/PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 community/playpen/PKGBUILD (limited to 'community/playpen/PKGBUILD') diff --git a/community/playpen/PKGBUILD b/community/playpen/PKGBUILD new file mode 100644 index 000000000..b01dc48b6 --- /dev/null +++ b/community/playpen/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Daniel Micay +pkgname=playpen +pkgver=1 +pkgrel=2 +epoch=1 +pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp' +arch=(i686 x86_64) +url='https://github.com/thestinger/playpen/' +license=(MIT) +depends=(libseccomp gcc-libs) +makedepends=(git python clang) +source=(git://github.com/thestinger/playpen#tag=1) +md5sums=(SKIP) + +build() { + cd $pkgname + git submodule update --init + make +} + +package() { + cd $pkgname + make PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} -- cgit v1.2.3-54-g00ecf