blob: a39524928aeee49f58c6b43b84dfb6c0a0b40d11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Package
version = "0.1.0"
author = "Oskari Timperi"
description = "libtommath for Nim"
license = "MIT"
srcDir = "src"
# Dependencies
requires "nim >= 0.18.0"
before install:
exec "git clone --branch v1.0.1 https://github.com/libtom/libtommath.git /tmp/source-libtommath"
exec "nim c -r tools/libtommath.nim"
|