Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit c3e7d9c

Browse files
Merge pull request #31 from ScientificC/development
Added package
2 parents db09e34 + a66206e commit c3e7d9c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Diff for: install.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
pushd `pwd`
4+
5+
rm -rf build
6+
mkdir build
7+
cd build
8+
9+
cmake -G "Unix Makefiles" .. -DCML_BUILD_STATIC=ON -DCML_BUILD_SHARED=ON && \
10+
make && \
11+
ctest && \
12+
sudo make install
13+
14+
popd

Diff for: package.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "cmathl",
3+
"version": "1.10.4",
4+
"repo": "ScientificC/cmathl",
5+
"description": "A pure-C math library with a great variety of mathematical functions. Seeks to be close to C89/C90 compliant for portability.",
6+
"keywords": [],
7+
"license": "MIT",
8+
"install": "./install.sh",
9+
"development": {
10+
"ScientificC/errno": "1.0.0"
11+
}
12+
}

0 commit comments

Comments
 (0)