test-package/eternity.json

30 lines
687 B
JSON
Raw Normal View History

2024-10-28 06:27:38 -07:00
{
"metadata": {
"author": "Example",
"name": "test-package",
"desc": "A wonderful test package",
"longDesc": "A very wonderful package\nWith a very long\nDescription!",
"version": "1.0.2",
"license": "MIT",
"arch": "noarch",
"deps": [],
"specialFiles": {
"noDelete": ["/etc/config.conf"],
"noReplace": ["/var/hi/cache.thing"]
}
},
"build": {
"type": "host",
"deps": [],
"steps": [
"mkdir -p build/t/etc/",
"mkdir -p build/t/var/hi/",
"touch build/t/etc/config.conf",
"touch build/t/var/hi/cache.thing"
],
"root": "build",
"hooks": "install-scripts",
"files": "resources"
}
}