From 6688a5a81f21c9909604ff7d6927797d80c93a2d Mon Sep 17 00:00:00 2001 From: David Newhall II Date: Thu, 13 Jun 2019 02:29:02 -0700 Subject: [PATCH] Rename license and include it in packages. --- MIT-LICENSE => LICENSE | 3 ++- Makefile | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) rename MIT-LICENSE => LICENSE (95%) diff --git a/MIT-LICENSE b/LICENSE similarity index 95% rename from MIT-LICENSE rename to LICENSE index 42782d63..8a7e32d3 100644 --- a/MIT-LICENSE +++ b/LICENSE @@ -1,5 +1,6 @@ +MIT LICENSE. Copyright (c) 2016 Garrett Bjerkhoel -Copyright (c) 2018 David Newhall II +Copyright (c) 2018-2019 David Newhall II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/Makefile b/Makefile index 7c07f0ab..1b8f2f59 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ package_build_osx: readme man macos cp $(BINARY).macos $@/usr/local/bin/$(BINARY) cp *.1.gz $@/usr/local/share/man/man1 cp examples/*.conf.example $@/usr/local/etc/$(BINARY)/ - cp *.html examples/{*dash.json,up.conf.example} $@/usr/local/share/doc/$(BINARY)/ + cp LICENSE *.html examples/{*dash.json,up.conf.example} $@/usr/local/share/doc/$(BINARY)/ # These go to their own folder so the img src in the html pages continue to work. cp examples/*.png $@/usr/local/share/doc/$(BINARY)/examples cp init/launchd/$(OSX_PKG_PREFIX).$(BINARY).plist $@/Library/LaunchAgents/ @@ -146,7 +146,7 @@ package_build_linux: readme man linux cp *.1.gz $@/usr/share/man/man1 cp examples/*.conf.example $@/etc/$(BINARY)/ cp examples/up.conf.example $@/etc/$(BINARY)/up.conf - cp *.html examples/{*dash.json,up.conf.example} $@/usr/share/doc/$(BINARY)/ + cp LICENSE *.html examples/{*dash.json,up.conf.example} $@/usr/share/doc/$(BINARY)/ # These go to their own folder so the img src in the html pages continue to work. cp examples/*.png $@/usr/share/doc/$(BINARY)/examples cp init/systemd/$(BINARY).service $@/lib/systemd/system/ @@ -189,7 +189,7 @@ install: man readme $(BINARY) /usr/bin/install -m 0644 -cp $(BINARY).1.gz $(PREFIX)/share/man/man1 /usr/bin/install -m 0644 -cp examples/up.conf.example $(ETC)/$(BINARY)/ [ -f $(ETC)/$(BINARY)/up.conf ] || /usr/bin/install -m 0644 -cp examples/up.conf.example $(ETC)/$(BINARY)/up.conf - /usr/bin/install -m 0644 -cp *.html examples/{*dash.json,up.conf.example} $(PREFIX)/share/doc/$(BINARY)/ + /usr/bin/install -m 0644 -cp LICENSE *.html examples/{*dash.json,up.conf.example} $(PREFIX)/share/doc/$(BINARY)/ # These go to their own folder so the img src in the html pages continue to work. /usr/bin/install -m 0644 -cp examples/*.png $(PREFIX)/share/doc/$(BINARY)/examples