Skip to content

Commit

Permalink
OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldtse committed Dec 12, 2017
1 parent e1b99a1 commit ee8be89
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ci/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ freebsd_install() {
openbsd_install() {
sudo pkg_add bzip2
sudo pkg_add cmake
sudo pkg_add gmake
sudo pkg_add gettext-tools
sudo pkg_add gnupg-2.1.15p2
sudo pkg_add wget
Expand All @@ -50,6 +51,11 @@ openbsd_install() {

netbsd_install() {
echo ""
pkgin -y install gnupg
pkgin -y install cmake
pkgin -y install gettext-tools
pkgin -y install clang
pkgin -y install wget
}

linux_install() {
Expand Down
4 changes: 2 additions & 2 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ if [ ! -e "${GPG21_INSTALL}/bin/gpg" ]; then
wget -c https://www.gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${version}.tar.bz2.sig
${GPG} --verify ${pkgname}-${version}.tar.bz2.sig
tar -xjf ${pkgname}-${version}.tar.bz2
cd ${pkgname}-${version}/
pushd ${pkgname}-${version}/
# autoreconf -ivf
./configure --prefix="${GPG21_INSTALL}" --with-libgpg-error-prefix="${GPG21_INSTALL}"
${MAKE} -j${CORES} install
cd ..
popd
done

wget -c https://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-1.0.0.tar.bz2
Expand Down

0 comments on commit ee8be89

Please sign in to comment.