mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
36 lines
849 B
YAML
36 lines
849 B
YAML
|
distributable:
|
||
|
url: https://github.com/google/double-conversion/archive/refs/tags/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: google/double-conversion/tags
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
cmake.org: ^3
|
||
|
script: |
|
||
|
cmake -DCMAKE_INSTALL_PREFIX="{{prefix}}" -DBUILD_SHARED_LIBS=ON .
|
||
|
make --jobs {{ hw.concurrency }}
|
||
|
make install
|
||
|
|
||
|
test:
|
||
|
fixture: |
|
||
|
#include <double-conversion/bignum.h>
|
||
|
#include <stdio.h>
|
||
|
int main() {
|
||
|
char buf[20] = {0};
|
||
|
double_conversion::Bignum bn;
|
||
|
bn.AssignUInt64(0x1234567890abcdef);
|
||
|
bn.ToHexString(buf, sizeof buf);
|
||
|
printf("%s", buf);
|
||
|
return 0;
|
||
|
}
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
script: |
|
||
|
mv $FIXTURE fixture.cc
|
||
|
cc fixture.cc -ldouble-conversion -o a.out
|
||
|
./a.out
|