This commit is contained in:
SrGooglo 2024-04-01 07:01:38 +02:00
commit 2fc4c665bf
2 changed files with 28 additions and 0 deletions

BIN
data/music.mp3 Normal file

Binary file not shown.

28
main.rmanifest.js Normal file
View File

@ -0,0 +1,28 @@
class test {
static pkg_name = "test"
static version = "0.0.1"
static description = "Testing the new manifest v2 on RS-Relic"
static license = "unlicensed"
static useLib = ["path", "open"]
static git_remote = "https://git.ragestudio.net/srgooglo/Relic-ManifestV2-test"
installSteps = [
{
type: "git_clone",
url: test.git_remote,
}
]
async execute() {
const target = Lib.path.resolve(install_path, "./data/music.mp3")
Lib.open.spawn(target)
}
async initialize() {
Log.info("Initializing...")
Log.info(`Im am running on a host ${os_string} [${arch}] [${install_path}]`)
}
}