clarify license situation via unlicense (closes #4)

This commit is contained in:
Matthew Ryan Dillon 2025-04-05 06:32:44 -04:00
parent 931f4ca58e
commit ad2794505a
4 changed files with 28 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
version = 4
[[package]]
name = "ab_glyph"

View file

@ -2,6 +2,7 @@
name = "dsort"
version = "0.2.1"
edition = "2021"
license = "unlicense"
[dependencies]
bevy = "0.14"

24
UNLICENSE Normal file
View file

@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
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 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.
For more information, please refer to <https://unlicense.org/>

View file

@ -35,7 +35,7 @@ if [ -f "$WINDOWS_BIN_PATH" ]; then
WINDOWS_PACKAGE="$OUTPUT_DIR/${PROJECT_NAME}_${VERSION}_windows_x86_64"
mkdir -p "$WINDOWS_PACKAGE"
cp "$WINDOWS_BIN_PATH" "$WINDOWS_PACKAGE/"
cp README.md LICENSE* "$WINDOWS_PACKAGE/" 2>/dev/null || true
cp README.md UNLICENSE* "$WINDOWS_PACKAGE/" 2>/dev/null || true
echo "Creating Windows zip archive..."
(cd "$OUTPUT_DIR" && zip -r "${PROJECT_NAME}_${VERSION}_windows_x86_64.zip" "$(basename "$WINDOWS_PACKAGE")")
@ -56,7 +56,7 @@ if [ -f "$MACOS_BIN_PATH" ]; then
MACOS_PACKAGE="$OUTPUT_DIR/${PROJECT_NAME}_${VERSION}_macos_arm64"
mkdir -p "$MACOS_PACKAGE"
cp "$MACOS_BIN_PATH" "$MACOS_PACKAGE/"
cp README.md LICENSE* "$MACOS_PACKAGE/" 2>/dev/null || true
cp README.md UNLICENSE* "$MACOS_PACKAGE/" 2>/dev/null || true
echo "Creating macOS zip archive..."
(cd "$OUTPUT_DIR" && zip -r "${PROJECT_NAME}_${VERSION}_macos_arm64.zip" "$(basename "$MACOS_PACKAGE")")