[SCM] Packaging for original LIERO binary data branch, master, updated. upstream/1.33-44-g72fad05

Martin Erik Werner martinerikwerner at gmail.com
Fri Mar 30 19:57:58 UTC 2012


The following commit has been merged in the master branch:
commit acd48067dd8754b1f2531417d4978343fb405324
Author: Martin Erik Werner <martinerikwerner at gmail.com>
Date:   Sun Mar 18 00:28:31 2012 +0100

    Add license header and description for scripts

diff --git a/debian/scripts/extractgfx b/debian/scripts/extractgfx
index da20507..6f512ff 100755
--- a/debian/scripts/extractgfx
+++ b/debian/scripts/extractgfx
@@ -1,6 +1,38 @@
-#!/bin/bash -x
+#!/bin/bash
 #
-# Blah
+# This script is licensed under the BSD-2-Clause license:
+#
+# -----//-----
+#
+# Copyright (c) 2012, Martin Erik Werner <martinerikwerner at gmail.com>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+#    this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+#    this list of conditions and the following disclaimer in the documentation
+#    and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# -----//-----
+#
+# This script extracts the three sprite canvases contained within LIERO.CHR,
+# and dumps them as greyscale images in xpm format, use the 'packgfx' script to
+# pack them back up again
 
 gfxfile="$1"
 headersize1=10
diff --git a/debian/scripts/extractsounds b/debian/scripts/extractsounds
index e355440..1787e58 100755
--- a/debian/scripts/extractsounds
+++ b/debian/scripts/extractsounds
@@ -1,4 +1,38 @@
 #!/bin/bash
+#
+# This script is licensed under the BSD-2-Clause license:
+#
+# -----//-----
+#
+# Copyright (c) 2012, Martin Erik Werner <martinerikwerner at gmail.com>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+#    this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+#    this list of conditions and the following disclaimer in the documentation
+#    and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# -----//-----
+#
+# This script extracts individual sound files from the LIERO.SND binary blob
+# and dumps them in wav format in the current working directory, use the
+# 'packsounds' script to pack them back up again.
 
 usage="Usage: $0 <inputfile>"
 
diff --git a/debian/scripts/packgfx b/debian/scripts/packgfx
index dfcbe11..a8547b4 100755
--- a/debian/scripts/packgfx
+++ b/debian/scripts/packgfx
@@ -1,6 +1,38 @@
-#!/bin/bash -x
+#!/bin/bash
 #
-# Blah
+# This script is licensed under the BSD-2-Clause license:
+#
+# -----//-----
+#
+# Copyright (c) 2012, Martin Erik Werner <martinerikwerner at gmail.com>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+#    this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+#    this list of conditions and the following disclaimer in the documentation
+#    and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# -----//-----
+#
+# This script reads a set of three greyscale xpm images with dimensions
+# 16x1760, 7x910, 4x120, correspondingly named gfx1.xpm, gfx2.xpm gfx3.xpm and
+# packs them into a CHR-file for Liero.
 
 gfxfile="$1"
 
diff --git a/debian/scripts/packsounds b/debian/scripts/packsounds
index 17a301d..5ac6dba 100755
--- a/debian/scripts/packsounds
+++ b/debian/scripts/packsounds
@@ -1,5 +1,35 @@
 #!/bin/bash
 #
+# This script is licensed under the BSD-2-Clause license:
+#
+# -----//-----
+#
+# Copyright (c) 2012, Martin Erik Werner <martinerikwerner at gmail.com>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+#    this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+#    this list of conditions and the following disclaimer in the documentation
+#    and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# -----//-----
+#
 # This script reads a set of 30 name-defined wav files and packs them into a
 # SND-file for LIERO, files must be named correctly ("NAME.wav") but may differ
 # in content from the originals.

-- 
Packaging for original LIERO binary data



More information about the Pkg-games-commits mailing list