diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-19 16:41:49 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-19 16:41:49 -0400 |
commit | 446280b452218569978da2a6d9ba5f8ef3e501b6 (patch) | |
tree | 400359b6eadd5d601c6dd9cf87fbb43c35146dd2 /pkg/thirdparty/gnupg | |
parent | 42d14aad48e955642f9b4e36af42b6f347821b51 (diff) |
[pkg] re-add scripts to build openvpn and gnupg binaries
Diffstat (limited to 'pkg/thirdparty/gnupg')
-rwxr-xr-x | pkg/thirdparty/gnupg/build_gnupg.sh | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/pkg/thirdparty/gnupg/build_gnupg.sh b/pkg/thirdparty/gnupg/build_gnupg.sh new file mode 100755 index 0000000..e125b68 --- /dev/null +++ b/pkg/thirdparty/gnupg/build_gnupg.sh @@ -0,0 +1,68 @@ +#!/usr/bin/env sh + +# ---------------------------------------------------------- +# Compile gnupg binary, to distribute with Bitmask bundles. +# ---------------------------------------------------------- +# You will need to import the keys for the gnupg developers into your keyring, +# see https://www.gnupg.org/download/integrity_check.html +# and https://www.gnupg.org/signature_key.html + +# For osx specific details, see: +# http://macgpg.sourceforge.net/docs/howto-build-gpg-osx.txt.asc +# osx doesn't allow to build static binaries, see: +# http://stackoverflow.com/questions/5259249/creating-static-mac-os-x-c-build + +set -e +set -x + +gnupg_version="gnupg-1.4.20" +url="ftp://ftp.gnupg.org/gcrypt/gnupg/$gnupg_version.tar.bz2" + +platform='unknown' +unamestr=`uname` +if [[ "$unamestr" == 'Linux' ]]; then + platform='linux' +elif [[ "$unamestr" == 'Darwin' ]]; then + platform='osx' +fi + +function prepare_source() +{ + wget -c $url -O $gnupg_version.tar.bz2; + wget -c $url.sig -O $gnupg_version.tar.bz2.sig; + #gpg --verify $gnupg_version.tar.bz2.sig $gnupg_version.tar.bz2; + tar -xjf $gnupg_version.tar.bz2; + cd $gnupg_version; +} + + +function build_static_gpg() +{ + ./configure CFLAGS="-static"; + make; +} + +function build_gpg() +{ + ./configure; + make; +} + +function copy_to_builddir() +{ + mkdir -p ~/leap_thirdparty_build + cp g10/gpg ~/leap_thirdparty_build +} + +function main() +{ + if [[ $platform == 'linux' ]]; then + (prepare_source; build_static_gpg; copy_to_builddir) + elif [[ $platform == 'osx' ]]; then + (prepare_source; build_gpg; copy_to_builddir) + fi + +} + +main "$@" + |