<div dir="ltr">Sorry, forgot a critical trick or maybe 2, should have just pasted the script in the first place:<div><br></div><div><div>#!/bin/bash</div><div>#</div><div># <a href="https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob;f=README">https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob;f=README</a></div><div><br></div><div>set -e</div><div><br></div><div>export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH</div><div><br></div><div>pushd npth</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd libgpg-error</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd libgcrypt</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd libksba</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd libassuan</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd gnupg</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode --enable-all-testsĀ <span style="color:rgb(0,0,0);font-family:monospace;font-size:12px;white-space:pre">--enable-gpg-is-gpg2</span></div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div><div><br></div><div>pushd gpgme</div><div>./autogen.sh --force</div><div>./configure --enable-maintainer-mode</div><div>make -j</div><div>make check</div><div>sudo make install</div><div>popd</div></div><div><br></div></div>