Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Fedora Installation

Ikey Doherty edited this page Jun 9, 2015 · 7 revisions

Clone the repository

git clone https://github.com/ikeydoherty/cve-check-tool.git

Install build dependencies

sudo yum install "pkgconfig(glib-2.0)" "pkgconfig(libcurl)" "pkgconfig(json-glib-1.0)" "pkgconfig(check)" "pkgconfig(libxml-2.0)" "pkgconfig(sqlite3)"

Ensure libtool is present

sudo yum install libtool

Change directory

cd cve-check-tool

Configure the project to install to /usr

./autogen.sh --prefix=/usr

Build the source (-j5 recommended)

make

Install it

sudo make install

Common issue:

configure.ac:9: error: required file './ltmain.sh' not found

Simply run libtoolize, and then re-run ./autogen.sh --prefix=/usr

Clone this wiki locally