Skip to content

Commit

Permalink
Added package
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Jan 23, 2019
1 parent 2e1b608 commit b56541b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
1.0.0
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" .. -DVECTOR_BUILD_STATIC=ON -DVECTOR_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": "vector",
"version": "1.0.0",
"repo": "ScientificC/cmathl",
"description": "A pure C vector implementation with CMake build support",
"keywords": [],
"license": "MIT",
"install": "./install.sh",
"development": {
"ScientificC/errno": "1.0.0"
}
}

0 comments on commit b56541b

Please sign in to comment.