This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from ScientificC/development
Added package
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
pushd `pwd` | ||
|
||
rm -rf build | ||
mkdir build | ||
cd build | ||
|
||
cmake -G "Unix Makefiles" .. -DCML_BUILD_STATIC=ON -DCML_BUILD_SHARED=ON && \ | ||
make && \ | ||
ctest && \ | ||
sudo make install | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "cmathl", | ||
"version": "1.10.4", | ||
"repo": "ScientificC/cmathl", | ||
"description": "A pure-C math library with a great variety of mathematical functions. Seeks to be close to C89/C90 compliant for portability.", | ||
"keywords": [], | ||
"license": "MIT", | ||
"install": "./install.sh", | ||
"development": { | ||
"ScientificC/errno": "1.0.0" | ||
} | ||
} |