From 876aeced9fa34f607b07cb1d0fd8db78de8b7f5e Mon Sep 17 00:00:00 2001 From: ofluffydev Date: Wed, 30 Oct 2024 21:23:35 -0500 Subject: [PATCH] yeah --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/README.md b/README.md index 69baeef..01cb200 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # test-package +## Usage + Simple package to test both eternity and eon Build with @@ -13,3 +15,37 @@ Install with ``` eon install .epk ``` + +## The eternity.json file + +The `eternity.json` file contains various options to configure the build and metadata of the package. Below is a breakdown of the available options: + +### metadata + +- **author**: The author of the package. Example: `"Example"` +- **name**: The name of the package. Example: `"test-package"` +- **desc**: A short description of the package. Example: `"A wonderful test package"` +- **longDesc**: A detailed description of the package. Example: `"A very wonderful package\nWith a very long\nDescription!"` +- **version**: The version of the package. Example: `"1.0.2"` +- **license**: The license under which the package is distributed. Example: `"MIT"` +- **arch**: The architecture for which the package is built. Example: `"x86_64"` +- **deps**: A list of dependencies required by the package. Example: `[]` +- **specialFiles**: Special files that have specific handling rules. + - **noDelete**: Files that should not be deleted. Example: `["/etc/config.conf"]` + - **noReplace**: Files that should not be replaced. Example: `["/var/hi/cache.thing"]` + +### build + +- **type**: The type of build environment. Example: `"host"` +- **deps**: A list of build dependencies. Example: `[]` +- **steps**: The steps to build the package. + - Example: + ```json + [ + "g++ -c src/main.cpp -o main.o", + "mkdir -p build/usr/bin", + "g++ main.o -o build/usr/bin/test-package" + ] + ``` +- **root**: The root directory for the build output. Example: `"build"` +- **files**: The directory containing the source files. Example: `"src"` \ No newline at end of file