Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SalehAlolayan/6b6f6b6e9715455f071754832f30e7d1 to your computer and use it in GitHub Desktop.
Save SalehAlolayan/6b6f6b6e9715455f071754832f30e7d1 to your computer and use it in GitHub Desktop.
XCA build and install on CentOS 7

Install XCA on Centos 7

Install Dependencies

yum install -y git
yum groupinstall -y "Development Tools"
yum install -y qt5-qtbase-devel qt5-qtbase-mysql qt5-qtbase-postgresql qt5-linguist
yum install -y openssl-devel libtool-ltdl-devel 

Modify Environment Variables

export CXXFLAGS=-std=c++11
export PATH="/usr/lib64/qt5/bin/:$PATH"

Clone, Build and Install

git clone https://github.com/chris2511/xca.git
cd xca
./bootstrap
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment