aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorMichał Polański <michal@polanski.me>2020-03-23 01:35:22 +0100
committerRasmus Thomsen <oss@cogitri.dev>2020-03-23 10:42:43 +0000
commitc149e05ee8b58176154bf2f6e79b9f35660db4ba (patch)
tree1f7db02d905f4984f02d2259eb2e8c8e74379f3d /testing
parent74bff20d4cfe743c15c44f308fae703eb3f88fc1 (diff)
downloadaports-c149e05ee8b58176154bf2f6e79b9f35660db4ba.tar.bz2
aports-c149e05ee8b58176154bf2f6e79b9f35660db4ba.tar.xz
testing/wayvnc: new aport
Diffstat (limited to 'testing')
-rw-r--r--testing/wayvnc/APKBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/wayvnc/APKBUILD b/testing/wayvnc/APKBUILD
new file mode 100644
index 0000000000..c60df8df11
--- /dev/null
+++ b/testing/wayvnc/APKBUILD
@@ -0,0 +1,26 @@
+# Contributor: Michał Polański <michal@polanski.me>
+# Maintainer: Michał Polański <michal@polanski.me>
+pkgname=wayvnc
+pkgver=0.1.2
+pkgrel=0
+pkgdesc="A VNC server for wlroots-based Wayland compositors"
+url="https://github.com/any1/wayvnc"
+arch="all"
+license="ISC"
+makedepends="meson wlroots-dev libuv-dev neatvnc-dev"
+options="!check" # no test suite
+source="$pkgname-$pkgver.tar.gz::https://github.com/any1/wayvnc/archive/v$pkgver.tar.gz"
+
+build() {
+ meson \
+ --buildtype=plain \
+ --prefix=/usr \
+ build
+ ninja -C build
+}
+
+package() {
+ DESTDIR="$pkgdir" ninja -C build install
+}
+
+sha512sums="3ca395e1d6e3329cab51b6aaee53bc080a66b19b9c9a48d12a8226cc7024619acc85665aac4f5001d5c06dceffde9bc825b2ffa59ab0ed09e4340ef85a203a05 wayvnc-0.1.2.tar.gz"