diff options
author | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
commit | ccc722b7ed330198d82a3cf28ead76d6d107a70a (patch) | |
tree | 7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/olm/olm.xibuild | |
parent | 9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff) |
added java
Diffstat (limited to 'repo/olm/olm.xibuild')
-rw-r--r-- | repo/olm/olm.xibuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/olm/olm.xibuild b/repo/olm/olm.xibuild new file mode 100644 index 0000000..60a4169 --- /dev/null +++ b/repo/olm/olm.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="olm" +DESC="Implementation of the olm and megolm cryptographic ratchets" + +MAKEDEPS="cmake python python-cffi" + +PKG_VER=3.2.10 +SOURCE="https://gitlab.matrix.org/matrix-org/olm/-/archive/$PKG_VER/olm-$PKG_VER.tar.gz" + +build() { + cmake -B build \ + -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib + cmake --build build + + cd python + python3 setup.py build +} + +package() { + cd .. + DESTDIR="$PKG_DEST" cmake --install build +} |