Skip to content

Commit

Permalink
created haxelib
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstNW committed Jun 2, 2019
1 parent 27851e9 commit 92bb253
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
LIB_NAME=necurl
LIB_FILE=$(LIB_NAME).zip

all: build upload

upload:
haxelib submit $(LIB_FILE)

build: $(LIB_FILE) clean

$(LIB_FILE): haxelib.json src/*/* ndll/*/*
-mkdir temp
cp haxelib.json temp/
cp -R ndll temp/
cp -R src temp/
cd temp; zip -X -r $(LIB_FILE) .; mv $(LIB_FILE) ../

clean:
-rm -rf temp
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"license": "MIT",
"tags": ["neko", "necurl", "curl"],
"description": "",
"version": "0.0.1",
"version": "0.1.0",
"classPath": "src/",
"releasenote": "Initial release, everything is working correctly.",
"releasenote": "Updated version, everything is working correctly.",
"contributors": ["constnw"],
"dependencies": {
}
Expand Down
Binary file added necurl.zip
Binary file not shown.

0 comments on commit 92bb253

Please sign in to comment.