Date: Sunday, July 21, 2013 @ 01:24:18 Author: thestinger Revision: 94333
add playpen Added: playpen/ playpen/repos/ playpen/trunk/ playpen/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: playpen/trunk/PKGBUILD =================================================================== --- playpen/trunk/PKGBUILD (rev 0) +++ playpen/trunk/PKGBUILD 2013-07-20 23:24:18 UTC (rev 94333) @@ -0,0 +1,27 @@ +# Maintainer: Daniel Micay <[email protected]> +pkgname=playpen +pkgver=1 +pkgrel=1 +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) +provides=(playpen) +conflicts=(playpen) +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" +}
