Skip to content
Maidfile.toml 383 B
Newer Older
theMackabu's avatar
theMackabu committed
[project]
name = "pmc"
theMackabu's avatar
theMackabu committed
version = "0.1.0"

[tasks]
clean = { script = ["rm -rf bin", "mkdir bin"] }

[tasks.build]
depends = ["clean"]
script = [
   "cargo zigbuild --release", 
   "cp target/release/pmc bin/pmc"
]
theMackabu's avatar
theMackabu committed

[tasks.build.cache]
path = "src"
target = ["bin/pmc"]

theMackabu's avatar
theMackabu committed
[tasks.install]
script = [
   "maid build -q", 
   "sudo cp bin/pmc /usr/local/bin",
    "echo Copied binary!"
]