forked from semios/semios-packages
19 lines
295 B
Python
19 lines
295 B
Python
from lib import rust
|
|
from lib.make import *
|
|
|
|
version("0.1.0")
|
|
source_url("https://gitea.semilabs.org/semios/certutil/archive/v0.1.0.tar.gz")
|
|
|
|
builddep("shortcut/rust")
|
|
|
|
|
|
def build():
|
|
rust.build()
|
|
|
|
|
|
on_build(build)
|
|
|
|
package("certutil")
|
|
dep("semi-libc @same-arch")
|
|
rust.use_auto_pack(["bin"])
|