Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 607 Bytes

README.rst

File metadata and controls

31 lines (22 loc) · 607 Bytes

DNF Offline Upgrade Plugin

Experimental plugin to use with DNF package manager.

Building from source

From the DNF git checkout directory:

mkdir build;
pushd build;
cmake .. && make;
popd;

Then to run DNF:

PYTHONPATH=`readlink -f .` bin/dnf <arguments>

Running tests

From the DNF git checkout directory:

mkdir build;
pushd build;
cmake .. && make ARGS="-V" test;
popd;