10/29 added basic package processing

This commit is contained in:
2025-10-29 09:01:29 -04:00
parent 21b3d18b5a
commit e591b71143
12 changed files with 903 additions and 9 deletions

4
pkg/README Normal file
View File

@@ -0,0 +1,4 @@
+ Glacier Packaging Format
Every Glacier package should contain the following files:
* pkg_meta.gpm (Glacier Package Manifest metadata file)

17
pkg/bar.gpm.cfg Normal file
View File

@@ -0,0 +1,17 @@
#
# bar
#
PKG_NAME = "bar";
PKG_VER = 1.0.0;
PKG_DESC = "example pkg";
PKG_MAINT = "liamwaldron@everestlinux.org";
PKG_COPYRIGHT = "GPL3";
PKG_DEPS = (
{ PKG_NAME = "foo"; PKG_VER = 1.1.1; };
);
PKG_CONFS = (
{};
);

10
pkg/pkg_meta.gpm Normal file
View File

@@ -0,0 +1,10 @@
#
# pkg_meta.gpm
#
PACKAGE_NAME = "pkg"
PACKAGE_VER = 1.0.0
PACKAGE_DESC = ""
PACKAGE_MAINT = ""
PACKAGE_LICENSE = "";
PACKAGE_ARCH = "";