This commit is contained in:
randogoth 2026-08-31 16:01:14 +03:00
commit 19991bee2a
44 changed files with 4799 additions and 0 deletions

25
devbox.json Normal file
View file

@ -0,0 +1,25 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": [
"open-watcom-v2@latest",
"gnumake@latest",
"python3@latest",
"zip@latest"
],
"shell": {
"scripts": {
"build": "make",
"clean": "make clean && rm -rf dist",
"rebuild": "make clean && rm -rf dist && make",
"logos": "python3 tools/generate_logos_data.py",
"dist": [
"make",
"rm -rf dist && mkdir -p dist/pastfetch",
"cp build/pf.exe nansi/NANSI.SYS README.md LICENSE dist/pastfetch/",
"cp nansi/license.txt dist/pastfetch/NANSI.TXT",
"(cd dist && zip -qr pastfetch.zip pastfetch)",
"echo 'wrote dist/pastfetch.zip'"
]
}
}
}