-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try building libgpgme and libgpg-error
- Loading branch information
Showing
6 changed files
with
50 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Changelog | |
v0.4.3 | ||
====== | ||
|
||
Released: August 15, 2017 | ||
Released: August 16, 2017 | ||
|
||
Bugs Fixed | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
#!/bin/bash | ||
sudo apt-get update | ||
sudo apt-get install -y libffi-dev gnupg2 pgpdump libgpgme11-dev | ||
sudo apt-get install -y libffi-dev gnupg2 | ||
|
||
if [ -z "${TOXENV}" ]; then | ||
sudo apt-get install gpgsm libassuan-dev libgpg-error-dev swig | ||
|
||
# build/install gpgme 1.8.0 manually | ||
wget https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.7.0.tar.bz2 | ||
tar -xvf gpgme-1.7.0.tar.bz2 | ||
pushd gpgme-1.7.0 | ||
./configure \ | ||
--prefix=/usr \ | ||
--disable-fd-passing \ | ||
--disable-static \ | ||
--disable-gpgsm-test \ | ||
--infodir=/usr/share/info \ | ||
--with-gpg=/usr/bin/gpg \ | ||
--with-gpgsm=/usr/bin/gpgsm \ | ||
--with-gpgconf=/usr/bin/gpgconf | ||
make | ||
sudo make install | ||
sudo ldconfig | ||
popd | ||
|
||
gpgconf --kill gpg-agent | ||
gpg-agent --daemon --homedir tests/gnupghome | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters