pantry/projects/libtom.net/math/package.yml
2024-02-18 08:50:07 -05:00

37 lines
748 B
YAML

distributable:
url: https://github.com/libtom/libtommath/releases/download/{{version.tag}}/ltm-{{version}}.tar.xz
strip-components: 1
display-name: LibTomMath
versions:
github: libtom/libtommath
build:
dependencies:
gnu.org/libtool: ^2.4.7
env:
PREFIX: ${{prefix}}
script:
- make
--file makefile.shared
--jobs {{ hw.concurrency }}
install
test:
linux:
llvm.org: '*'
script:
- fixture:
content: |
#include <tommath.h>
#include <stdio.h>
int main() {
printf("%s", mp_error_to_string(1));
return 0;
}
extname: .c
run:
- cc $FIXTURE -ltommath
- test "$(./a.out)" = "Invalid error code"