new: migrate more packages

This commit is contained in:
ngn
2024-07-30 02:57:37 +03:00
parent 0ffdf01794
commit 1a08fbc0a7
159 changed files with 985 additions and 109 deletions

3
src/release/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/release/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 24.05
First version

25
src/release/pkg.sh Normal file
View File

@ -0,0 +1,25 @@
# general info
NAME="release"
DESC="MatterLinux release files"
VERSION="24.05"
# required files
FILES=()
HASHES=()
# install and build depends
DEPENDS=()
BUILD=()
PACKAGE(){
install -dm755 "${ROOTDIR}/etc"
cat > "${ROOTDIR}/etc/os-release" << EOF
ID=matter
BUILD_ID=${VERSION}
NAME="MatterLinux GNU/Linux"
PRETTY_NAME="MatterLinux"
HOME_URL="https://matterlinux.xyz/"
DOCUMENTATION_URL="https://matterlinux.xyz/wiki"
EOF
chmod 644 "${ROOTDIR}/etc/os-release"
}