blob: 384ee5ef870b198da07237e1b006652c77ca040c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: A ratcheting forward secrecy protocol
# URL: https://github.com/signalapp/libsignal-protocol-c
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Depends on: cmake
name=libsignal-protocol-c
version=2.3.3
release=1
source=(https://github.com/signalapp/$name/archive/refs/tags/v$version.tar.gz)
build() {
cd $name-$version
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/doc
}
|