blob: a10701d17f0328f60116afe7820ea55cce8ca5d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/
pkgname=sandfox
pkgver=20131018
pkgrel=1
pkgdesc="Runs Firefox and other apps in a sandbox with limited access to the filesystem"
arch=(any)
license=('GPL3')
url="http://igurublog.wordpress.com/downloads/script-$pkgname/"
depends=('inotify-tools')
makedepends=('git')
source=('git://github.com/IgnorantGuru/sandfox.git')
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --always | sed 's|-|.|g'
}
package() {
cd "$pkgname"
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|