gettings started on the Software Center
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.containerizer
|
||||||
25
Software/build.lua
Normal file
25
Software/build.lua
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
--Default build.lua Script
|
||||||
|
|
||||||
|
local appid = "org.ruffles.software"
|
||||||
|
|
||||||
|
local project_name = "Software"
|
||||||
|
|
||||||
|
|
||||||
|
local package_data = build.optimize(build.package("src"))
|
||||||
|
|
||||||
|
build.writePackage(package_data,"build/"..appid)
|
||||||
|
|
||||||
|
local meta = {
|
||||||
|
perms = {
|
||||||
|
repo = true,
|
||||||
|
network = false,
|
||||||
|
app = true,
|
||||||
|
http = false,
|
||||||
|
},
|
||||||
|
author = "Ruffles",
|
||||||
|
name = project_name,
|
||||||
|
appid = appid,
|
||||||
|
}
|
||||||
|
|
||||||
|
build.writeMeta(meta,"build/"..project_name..".meta")
|
||||||
|
build.merge("build/"..appid,"build/"..project_name..".meta","build/"..project_name..".app")
|
||||||
1
Software/src/startup.lua
Normal file
1
Software/src/startup.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
print("Hello, World!")
|
||||||
Reference in New Issue
Block a user