blob: 74dab6d80b8ff383b3b4e00066a351cba66f308e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: igo95862 <address at domain dot tld>
pkgname=bubblejail-git
pkgver=r423.1820189
pkgrel=1
pkgdesc="Bubblewrap based sandboxing utility"
arch=('any')
url="https://github.com/igo95862/bubblejail"
license=('GPL3+')
depends=(
'python'
'python-pyxdg'
'bubblewrap'
'python-tomli'
'python-tomli-w'
'xdg-dbus-proxy'
'hicolor-icon-theme'
'python-pyqt6'
'desktop-file-utils'
'libnotify'
)
provides=('bubblejail')
conflicts=('bubblejail')
optdepends=(
'bash-completion: completions for bash shell'
'fish: completions for fish shell'
'slirp4netns: Namespaced networking stack'
)
makedepends=('git' 'meson' 'python-jinja' 'scdoc')
source=("$pkgname"::"git+https://github.com/igo95862/bubblejail")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
check () {
meson test -C build --print-errorlogs
}
build () {
arch-meson "$srcdir/$pkgname" build -Dversion_display="AUR-git $pkgver"
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|