Dark Horse Linux Package Manager: Core Component
 
 
Go to file
Chris Punches 7ebc3ebad3 rough impl of checksum verification 2025-04-01 23:33:22 -04:00
data fixed some issues with logging paths 2025-03-26 00:11:49 -04:00
dpmdk struggling a little with API exposure between modules and C++ types, needs a complete overhaul for checksums -- snapshot commit -- not functional 2025-03-31 02:03:18 -04:00
include basic POC functionality established for peer module loading 2025-03-27 22:28:02 -04:00
modules rough impl of checksum verification 2025-04-01 23:33:22 -04:00
src basic POC functionality established for peer module loading 2025-03-27 22:28:02 -04:00
.gitignore repaired some path handling, improved error handling 2025-02-23 04:04:50 -05:00
CMakeLists.txt boilerplat to begin working on verify module -- to be developed in paralle to the install module which will load an external symbol if this module is available for simpler bootstrapping 2025-03-27 00:14:47 -04:00
LICENSE Initial commit 2025-02-18 04:08:23 +00:00
README.md simplified dependency list 2025-03-02 01:10:26 -05:00

README.md

DPM-Core

The core component of the Dark Horse Linux Package Manager

What is DPM?

https://dpm.darkhorselinux.org

Build Dependencies

To build DPM from source, you'll need the following dependencies:

  • GCC/G++ (version 10 or later, supporting C++20)
  • CMake (version 3.22 or later)
  • Make

Building from Source

mkdir ./build && cd ./build
cmake ../
make
make install

This will install:

  • The dpm binary to /usr/bin/
  • Module shared objects to /usr/lib/dpm/modules/
  • Configuration files to /etc/dpm/conf.d/

Development

For development work, you can run DPM directly from the build directory:

./dpm

To load modules from the build directory, specify the module path:

./dpm -m ./modules