26 lines
687 B
Bash
26 lines
687 B
Bash
# Template file for 'olm'
|
|
pkgname=olm
|
|
version=3.2.4
|
|
revision=1
|
|
build_style=cmake
|
|
short_desc="Implementation of the Double Ratchet cryptographic ratchet"
|
|
maintainer="Adam Beckmeyer <adam_gpg@thebeckmeyers.xyz>"
|
|
license="Apache-2.0"
|
|
homepage="https://gitlab.matrix.org/matrix-org/olm"
|
|
distfiles="https://gitlab.matrix.org/matrix-org/olm/-/archive/${version}/olm-${version}.tar.bz2"
|
|
checksum=fbd233de5ba08b0820c7008a0b83f5c8d40250111ec7acfa0bf7e0110bfa1ec1
|
|
|
|
do_check() {
|
|
cd build/tests
|
|
ctest
|
|
}
|
|
|
|
olm-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/cmake
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|