forked from ZigRazor/CXXGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 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,12 @@ | ||
{ | ||
"name": "CXXGraph", | ||
"url" : "https://github.com/ZigRazor/CXXGraph", | ||
"license": "GPL", | ||
"tags": ["Algorithm", "Cpp"], | ||
"description": "Header-Only C++ Library for Graph Representation and Algorithms", | ||
"version": "0.1.6", | ||
"classPath": "", | ||
"releasenote": "Release 0.1.6", | ||
"contributors": ["ZigRazor"], | ||
"dependencies": {} | ||
} |
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,8 @@ | ||
# HAXELIB USAGE | ||
|
||
To publish a new package: | ||
|
||
- install Haxelib(if not present) | ||
- create a zip file with `make_packaging.sh` | ||
- modify the `haxelib.json` file to update version and important fields | ||
- submit the zip file with command `sudo haxelib submit CXXGraph[ Version ].zip` |
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
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,4 @@ | ||
#!/bin/bash | ||
cd ../.. | ||
zip -r CXXGraph/packaging/CXXGraph-$VERSION-$RELEASE.zip CXXGraph/include/* CXXGraph/packaging/haxelib.json | ||
cd - |