17 lines
255 B
Text
17 lines
255 B
Text
import Leanpkg2.Build
|
|
|
|
open Leanpkg2
|
|
|
|
def manifest : Manifest := {
|
|
name := "hello",
|
|
version := "1.0",
|
|
}
|
|
|
|
def configure : IO Unit :=
|
|
Leanpkg2.configure manifest
|
|
|
|
def build : IO Unit :=
|
|
Leanpkg2.build manifest ["bin"]
|
|
|
|
def main : IO Unit :=
|
|
build
|