blob: 3e30c2773fc5c93c7679f57b5d74cf596205571c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=wl-security-context
pkgver=0.1.0
pkgrel=1
pkgdesc="Run programs with wayland security context attached"
arch=('x86_64')
url="https://github.com/OkamiW/wl-security-context"
depends=('wayland')
makedepends=('meson' 'ninja' 'wayland-protocols')
source=("git+$url")
sha512sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
git checkout "v$pkgver"
arch-meson build
ninja -C build
}
package() {
cd "$srcdir/$pkgname"
DESTDIR="$pkgdir" ninja -C build install
}
|