1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 10:19:16 +02:00

add RPGP support

This commit is contained in:
holger krekel 2019-03-25 20:30:01 +01:00
parent c09fdf6576
commit 8d97b3d00f
No known key found for this signature in database
GPG key ID: 8E3B03A279B772D6
2 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,7 @@
0.9.0
-----
- build against latest deltachat core (0.41 ++)
- build against latest deltachat core (0.41 ++) with RPGP compiled in
- streamline package building
- allow installing from devpi.net package index

View file

@ -114,6 +114,9 @@ RUN ldconfig -v
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
ENV PATH=/root/.cargo/bin:$PATH
RUN rustc --version
# Install RPGP from github -- this currently downloads 500MB
# see reported issue: https://github.com/dignifiedquire/rpgp/issues/30
RUN true \
&& git clone https://github.com/dignifiedquire/rpgp.git \
&& cd rpgp/pgp-ffi \