all repos — min @ f4050a826e1f538a631158509629af11b388e9cf

A small but practical concatenative programming language.

min.nimble

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
# Package

version       = "0.19.1"
author        = "Fabio Cevasco"
description   = "A tiny concatenative programming language and shell."
license       = "MIT"
bin           = @["min"]

# Dependencies

requires "nim >= 0.19.0"
requires "nifty"

before install:
  exec "nifty install"

# Tasks

const
  compile = "nim c -d:release"
  linux_x86 = "--cpu:i386 --os:linux"
  linux_x64 = "--cpu:amd64 --os:linux"
  linux_arm = "--cpu:arm --os:linux"
  windows_x64 = "--cpu:amd64 --os:windows"
  macosx_x64 = ""
  parallel = "--parallelBuild:1 --verbosity:3"
  hs = "min"
  hs_file = "min.nim"
  zip = "zip -X"

proc shell(command, args: string, dest = "") =
  exec command & " " & args & " " & dest

proc filename_for(os: string, arch: string): string =
  return "min" & "_v" & version & "_" & os & "_" & arch & ".zip"

task windows_x64_build, "Build min for Windows (x64)":
  shell compile, windows_x64, hs_file

task linux_x86_build, "Build min for Linux (x86)":
  shell compile, linux_x86,  hs_file
  
task linux_x64_build, "Build min for Linux (x64)":
  shell compile, linux_x64,  hs_file
  
task linux_arm_build, "Build min for Linux (ARM)":
  shell compile, linux_arm,  hs_file
  
task macosx_x64_build, "Build min for Mac OS X (x64)":
  shell compile, macosx_x64, hs_file

task release, "Release min":
  echo "\n\n\n WINDOWS - x64:\n\n"
  windows_x64_buildTask()
  shell zip, filename_for("windows", "x64"), hs & ".exe"
  shell "rm", hs & ".exe"
  echo "\n\n\n LINUX - x64:\n\n"
  linux_x64_buildTask()
  shell zip, filename_for("linux", "x64"), hs 
  shell "rm", hs 
  echo "\n\n\n LINUX - x86:\n\n"
  linux_x86_buildTask()
  shell zip, filename_for("linux", "x86"), hs 
  shell "rm", hs 
  echo "\n\n\n LINUX - ARM:\n\n"
  linux_arm_buildTask()
  shell zip, filename_for("linux", "arm"), hs 
  shell "rm", hs 
  echo "\n\n\n MAC OS X - x64:\n\n"
  macosx_x64_buildTask()
  shell zip, filename_for("macosx", "x64"), hs 
  shell "rm", hs 
  echo "\n\n\n ALL DONE!"