diff options
author | Teddy Wing | 2018-11-22 19:34:03 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-22 19:34:03 +0100 |
commit | 1cee58da1eeaae4985d2719df34405fa8a204f8a (patch) | |
tree | 3435069b76f3c973fc762f21535039ac03a34fbe | |
parent | 95358bb88ee11c5231bae717bb454a58ddc1330a (diff) | |
download | DomeKey-1cee58da1eeaae4985d2719df34405fa8a204f8a.tar.bz2 |
sound_data.h: Add license header
-rw-r--r-- | DomeKey/sound_data.h | 41 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 43 insertions, 0 deletions
diff --git a/DomeKey/sound_data.h b/DomeKey/sound_data.h index 1d86870..fa3255e 100644 --- a/DomeKey/sound_data.h +++ b/DomeKey/sound_data.h @@ -1,3 +1,44 @@ +// Copyright (c) 2018 Teddy Wing +// +// *Purchasing policy notice:* All users of the software are expected to +// purchase a license from Teddy Wing unless they have a good reason not to +// pay. Users who can't purchase a license may apply to receive one for free +// at inquiry@domekey.teddywing.com. Users are free to: +// +// * download, build, and modify the app; +// * share the modified source code; +// * share the purchased or custom-built binaries (with unmodified license +// and contact info), provided that the purchasing policy is explained to +// all potential users. +// +// This software is available under a modified version of the Open Community +// Indie Software License: +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose is hereby granted, subject to the following conditions: +// +// * all copies retain the above copyright notice, the above purchasing +// policy notice and this permission notice unmodified; +// +// * all copies retain the name of the software (DomeKey), the name of the +// author (Teddy Wing), and contact information (including, but not limited +// to, inquiry@domekey.teddywing.com, and domekey.teddywing.com URLs) +// unmodified; +// +// * no fee is charged for distribution of the software; +// +// * the best effort is made to explain the purchasing policy to all users of +// the software. +// +// THE SOFTWARE IS PROVIDED "AS IS", AND THE AUTHOR AND COPYRIGHT HOLDERS +// DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE, +// INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY +// DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER +// IN AN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING +// OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + #ifndef SOUND_DATA_H #define SOUND_DATA_H @@ -61,6 +61,8 @@ $(ARCHIVE_PRODUCT): clean-release DomeKey/sound_data.h: sounds/*.mp3 : > $@ + sed -e 's,^\([^$$]\),// \1,' -e 's,^$$,//,' LICENSE >> $@ + echo >> $@ echo '#ifndef SOUND_DATA_H' >> $@ echo '#define SOUND_DATA_H' >> $@ echo >> $@ |