diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2017-12-02 13:52:39 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2017-12-02 13:52:39 +0000 |
| commit | a190d014340a0f88a65a2a6cc13c8075d1d7bd1d (patch) | |
| tree | f22f47df723aad20fc1e8fc28ac6e617941f5204 | |
| parent | initial commit (diff) | |
| download | vcvmods-0.5.0.tar.gz vcvmods-0.5.0.zip | |
add LICENSEv0.5.0
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | LICENSE | 19 | ||||
| -rw-r--r-- | Makefile | 4 |
3 files changed, 23 insertions, 3 deletions
@@ -1,2 +1,3 @@ build -plugin.so +dist +plugin.* @@ -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. @@ -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) |
