From 3a3737f2ca718d7c3b5e75f534ee85a61a57074a Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Tue, 13 Mar 2018 14:17:56 -0500 Subject: [PATCH] Update license text --- LICENSE | 10 ---------- LICENSE.lin | 22 +++++++++++++++++++++ LICENSE.osx | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ build_proton.sh | 6 +++++- 4 files changed, 78 insertions(+), 11 deletions(-) delete mode 100644 LICENSE create mode 100644 LICENSE.lin create mode 100644 LICENSE.osx diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 1e29e11b..00000000 --- a/LICENSE +++ /dev/null @@ -1,10 +0,0 @@ -This software contains Wine licensed under the LGPL 2.1, which is - - Copyright (c) 1993-2018 the Wine project authors - -Browse the source code for more information - - https://github.com/ValveSoftware/wine/ - -The rest of this software is available under Steam's standard licensing, -included with your Steam client. diff --git a/LICENSE.lin b/LICENSE.lin new file mode 100644 index 00000000..3ec34f42 --- /dev/null +++ b/LICENSE.lin @@ -0,0 +1,22 @@ +This software contains Wine licensed under the LGPL 2.1. Wine is + + Copyright (c) 1993-2018 the Wine project authors + +Browse the source code for more information + + https://github.com/ValveSoftware/wine/ + +---- ---- ---- ---- + +This software contains DXVK licensed under the zlib/libpng license. DXVK is + + Copyright (c) 2017 Philip Rebohle + +Visit DXVK at + + https://github.com/doitsujin/dxvk/ + +---- ---- ---- ---- + +The rest of this software is available under Steam's standard licensing, +included with your Steam client. diff --git a/LICENSE.osx b/LICENSE.osx new file mode 100644 index 00000000..81c7c4b0 --- /dev/null +++ b/LICENSE.osx @@ -0,0 +1,51 @@ +This software contains Wine licensed under the LGPL 2.1. Wine is + + Copyright (c) 1993-2018 the Wine project authors + +Browse the source code for more information + + https://github.com/ValveSoftware/wine/ + +---- ---- ---- ---- + +This software contains DXVK licensed under the zlib/libpng license. DXVK is + + Copyright (c) 2017 Philip Rebohle + +Visit DXVK at + + https://github.com/doitsujin/dxvk/ + +---- ---- ---- ---- + +This software contains libSDL2 licensed under the zlib license. Visit libSDL at + + https://libsdl.org/ + +---- ---- ---- ---- + +This software contains FreeType2 licensed under the FreeType License. + +Portions of this software are copyright © 2018 The FreeType Project +(www.freetype.org). All rights reserved. + +---- ---- ---- ---- + +This software is based in part on the work of the Independent JPEG Group. + +Visit the libjpeg-turbo homepage at + + https://libjpeg-turbo.org/ + +---- ---- ---- ---- + +This software is based in part on the work of the libpng authors. + +Visit the libpng homepage at + + http://libpng.org/pub/png/libpng.html + +---- ---- ---- ---- + +The rest of this software is available under Steam's standard licensing, +included with your Steam client. diff --git a/build_proton.sh b/build_proton.sh index 4a98fc1d..4d2743b3 100755 --- a/build_proton.sh +++ b/build_proton.sh @@ -410,7 +410,11 @@ tar -C build/dist -c . | gzip -c -1 > dist/proton_dist.tar.gz cp -a toolmanifest.vdf dist/ cp -a proton dist/ -cp -a LICENSE dist/ +if [ "$PLATFORM" == "Darwin" ]; then + cp -a LICENSE.osx dist/LICENSE +else + cp -a LICENSE.lin dist/LICENSE +fi date '+%s' > dist/version echo "Proton ready in dist/"