summaryrefslogtreecommitdiff
path: root/repo/mtxclient
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
committerdavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
commitccc722b7ed330198d82a3cf28ead76d6d107a70a (patch)
tree7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/mtxclient
parent9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff)
added java
Diffstat (limited to 'repo/mtxclient')
-rw-r--r--repo/mtxclient/mtxclient.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/mtxclient/mtxclient.xibuild b/repo/mtxclient/mtxclient.xibuild
new file mode 100644
index 0000000..efb50c1
--- /dev/null
+++ b/repo/mtxclient/mtxclient.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="mtxclient"
+DESC="Client API library for Matrix, built on top of Boost.Asio"
+
+MAKEDEPS="boost coeurl libsodium nlohmann-json olm openssl zlib cmake"
+
+PKG_VER=0.7.0
+SOURCE="https://github.com/nheko-reborn/mtxclient/archive/v$PKG_VER/mtxclient-v$PKG_VER.tar.gz"
+
+build() {
+ cmake -B build \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_LIB_EXAMPLES=OFF
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$PKG_DEST" cmake --install build
+}
+
+