https://github.com/manjaro/arkdep-variants
Profiles for Arkdep
https://github.com/manjaro/arkdep-variants
Last synced: 11 days ago
JSON representation
Profiles for Arkdep
- Host: GitHub
- URL: https://github.com/manjaro/arkdep-variants
- Owner: manjaro
- License: gpl-3.0
- Created: 2024-08-01T07:33:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T23:31:34.000Z (7 months ago)
- Last Synced: 2024-11-03T04:25:49.747Z (6 months ago)
- Language: Shell
- Size: 121 KB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Manjaro Arkdep Variants
This repository contains Manjaro Immutable variant configuration for arkdep-build.
Variants are recipes used by arkdep-build to create installable images in Arkdep format.
## System requirements
- Have arkdep-build and dependencies installed.
```bash
sudo pacman -Sy arkdep
```## Building a variant
First clone the repo and navigate to its root:
```bash
git clone [email protected]:manjaro/arkdep-variants.git
cd arkdep-variants
```Variants are identified based on directory name. Pass the directory name of whichever variant you wish to build to arkdep-build to build it:
```bash
sudo arkdep-build test-manjaro-gnome
```Once the image finished building, they will be deposited in `./target`.
## Deploying the images locally
Once you have build an image it can quickly be deployed locally on any Arkdep managed system.
```bash
cp ./target/{IMAGE_ID}.tar.zst /arkdep/cache
sudo arkdep deploy cache {IMAGE_ID}
```