aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2017-12-02 13:52:39 +0000
committers-ol <s-ol@users.noreply.github.com>2017-12-02 13:52:39 +0000
commita190d014340a0f88a65a2a6cc13c8075d1d7bd1d (patch)
treef22f47df723aad20fc1e8fc28ac6e617941f5204
parentinitial commit (diff)
downloadvcvmods-0.5.0.tar.gz
vcvmods-0.5.0.zip
add LICENSEv0.5.0
-rw-r--r--.gitignore3
-rw-r--r--LICENSE19
-rw-r--r--Makefile4
3 files changed, 23 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index fdf37ab..e6e210a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
build
-plugin.so
+dist
+plugin.*
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e313bbd
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2017 s-ol bekic
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Makefile b/Makefile
index e93e47b..97523e6 100644
--- a/Makefile
+++ b/Makefile
@@ -17,14 +17,14 @@ include ../../plugin.mk
# Convenience target for including files in the distributable release
-DIST_NAME = Template
+DIST_NAME = solmods
.PHONY: dist
dist: all
ifndef VERSION
$(error VERSION must be defined when making distributables)
endif
mkdir -p dist/$(DIST_NAME)
- cp LICENSE* dist/$(DIST_NAME)/
+ cp LICENSE* README* dist/$(DIST_NAME)/
cp $(TARGET) dist/$(DIST_NAME)/
cp -R res dist/$(DIST_NAME)/
cd dist && zip -5 -r $(DIST_NAME)-$(VERSION)-$(ARCH).zip $(DIST_NAME)