diff options
| author | Shokara Kou <kou@13f0.net> | 2022-05-13 11:49:50 -0400 |
|---|---|---|
| committer | Shokara Kou <kou@13f0.net> | 2022-12-10 16:12:53 -0500 |
| commit | 06c57325ffbe336a670222b818a1c9bee4512b92 (patch) | |
| tree | df6afd359d6ac637173fc452bc269ddeec3817f5 /libsignal-protocol-c | |
| parent | 9f1c7646da005b7a079937d8b534148292949b86 (diff) | |
add profanity
Diffstat (limited to 'libsignal-protocol-c')
| -rw-r--r-- | libsignal-protocol-c/.footprint | 26 | ||||
| -rw-r--r-- | libsignal-protocol-c/.md5sum | 1 | ||||
| -rw-r--r-- | libsignal-protocol-c/Pkgfile | 22 |
3 files changed, 49 insertions, 0 deletions
diff --git a/libsignal-protocol-c/.footprint b/libsignal-protocol-c/.footprint new file mode 100644 index 0000000..b5ff937 --- /dev/null +++ b/libsignal-protocol-c/.footprint | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/include/ | ||
| 3 | drwxr-xr-x root/root usr/include/signal/ | ||
| 4 | -rw-r--r-- root/root usr/include/signal/curve.h | ||
| 5 | -rw-r--r-- root/root usr/include/signal/device_consistency.h | ||
| 6 | -rw-r--r-- root/root usr/include/signal/fingerprint.h | ||
| 7 | -rw-r--r-- root/root usr/include/signal/group_cipher.h | ||
| 8 | -rw-r--r-- root/root usr/include/signal/group_session_builder.h | ||
| 9 | -rw-r--r-- root/root usr/include/signal/hkdf.h | ||
| 10 | -rw-r--r-- root/root usr/include/signal/key_helper.h | ||
| 11 | -rw-r--r-- root/root usr/include/signal/protocol.h | ||
| 12 | -rw-r--r-- root/root usr/include/signal/ratchet.h | ||
| 13 | -rw-r--r-- root/root usr/include/signal/sender_key.h | ||
| 14 | -rw-r--r-- root/root usr/include/signal/sender_key_record.h | ||
| 15 | -rw-r--r-- root/root usr/include/signal/sender_key_state.h | ||
| 16 | -rw-r--r-- root/root usr/include/signal/session_builder.h | ||
| 17 | -rw-r--r-- root/root usr/include/signal/session_cipher.h | ||
| 18 | -rw-r--r-- root/root usr/include/signal/session_pre_key.h | ||
| 19 | -rw-r--r-- root/root usr/include/signal/session_record.h | ||
| 20 | -rw-r--r-- root/root usr/include/signal/session_state.h | ||
| 21 | -rw-r--r-- root/root usr/include/signal/signal_protocol.h | ||
| 22 | -rw-r--r-- root/root usr/include/signal/signal_protocol_types.h | ||
| 23 | drwxr-xr-x root/root usr/lib/ | ||
| 24 | -rw-r--r-- root/root usr/lib/libsignal-protocol-c.a | ||
| 25 | drwxr-xr-x root/root usr/lib/pkgconfig/ | ||
| 26 | -rw-r--r-- root/root usr/lib/pkgconfig/libsignal-protocol-c.pc | ||
diff --git a/libsignal-protocol-c/.md5sum b/libsignal-protocol-c/.md5sum new file mode 100644 index 0000000..f46b616 --- /dev/null +++ b/libsignal-protocol-c/.md5sum | |||
| @@ -0,0 +1 @@ | |||
| 68dae9b8da58f36dcbf9e10b0138d6f9 v2.3.3.tar.gz | |||
diff --git a/libsignal-protocol-c/Pkgfile b/libsignal-protocol-c/Pkgfile new file mode 100644 index 0000000..384ee5e --- /dev/null +++ b/libsignal-protocol-c/Pkgfile | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # Description: A ratcheting forward secrecy protocol | ||
| 2 | # URL: https://github.com/signalapp/libsignal-protocol-c | ||
| 3 | # Maintainer: Shokara Kou, kou at 13f0 dot net | ||
| 4 | # Depends on: cmake | ||
| 5 | |||
| 6 | name=libsignal-protocol-c | ||
| 7 | version=2.3.3 | ||
| 8 | release=1 | ||
| 9 | source=(https://github.com/signalapp/$name/archive/refs/tags/v$version.tar.gz) | ||
| 10 | |||
| 11 | build() { | ||
| 12 | cd $name-$version | ||
| 13 | |||
| 14 | cmake . \ | ||
| 15 | -DCMAKE_INSTALL_PREFIX=/usr \ | ||
| 16 | -DCMAKE_BUILD_TYPE=Release | ||
| 17 | |||
| 18 | make | ||
| 19 | make DESTDIR=$PKG install | ||
| 20 | |||
| 21 | rm -fr $PKG/usr/share/doc | ||
| 22 | } | ||
