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

Commit

Permalink
Merge pull request #31 from ScientificC/development
Browse files Browse the repository at this point in the history
Added package
  • Loading branch information
ulises-jeremias authored Jan 14, 2019
2 parents db09e34 + a66206e commit c3e7d9c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
14 changes: 14 additions & 0 deletions install.sh
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
12 changes: 12 additions & 0 deletions package.json
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"
}
}

0 comments on commit c3e7d9c

Please sign in to comment.