C framework for Glacier package manager
Go to file
2024-10-03 11:39:28 -04:00
etc v4.0.0-rc 2024-10-02 17:30:43 -04:00
include v4.0.0-rc2 - add function 'successlog' 2024-10-03 11:37:10 -04:00
pkg v4.0.0-rc 2024-10-02 17:30:43 -04:00
config.mk init 2024-02-08 09:01:44 -05:00
libglacier.c v4.0.0-rc2 - add function 'successlog' 2024-10-03 11:39:28 -04:00
Makefile v0.0.1-rc 2024-10-02 22:30:05 -04:00
README v4.0.0-rc 2024-10-02 17:30:43 -04:00

+ libglacier

The underlying C libraries for the Glacier package manager

+ Rationale

Glacier has been written in Bash since its conception. For obvious reasons, this is terrible for portability.
While writing an entire library for a project that's been in the works for a year at this point will take
much more time, it should futureproof Glacier and make it easier to deploy and test.

+ Usage

	#include <glacier_config.h>
	#include <glacier_log.h>
	#include <glacier_pkgops.h>
	#include <glacier_runtime.h>

See the relevant documentation for more information on libglacier functions.

+ Installation

Libglacier requires the following libraries to compile:

	- libcolor
	- libconfig

Once these are installed, you can continue with the installation.

Clone this repository:

	$ git clone https://git.everestlinux.org/EverestLinux/libglacier

Enter the directory and edit config.mk:

	$ cd libglacier
	$ $EDITOR config.mk

Build the library:

	$ make

NOTE: libglacier is distributed as a static library only.

Install the library and header files:

	# make install

+ Linking

To link libglacier into your program, ensure the proper header files are included.
Then simply add the following to your compiler flags:

	-lglacier

+ Documentation

Online documentation can be found at https://everestlinux.org/docs/libglacier
Offline documentation can be accessed with the following command:

	$ man libglacier