diff options
author | Marvin Borner | 2019-05-08 17:58:09 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-08 17:58:09 +0200 |
commit | 7e3ef275f870737b853fda3e007e74de2112a7d5 (patch) | |
tree | 07c1b8f37fcb399f2cbffd23168604bc37299b3c /Makefile | |
parent | bd89369b508f30fc987b27cf6b34a22fbc8e5d97 (diff) |
Added install script
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bfb8b58 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +.PHONY: all + +all: clean build + +clean: + $(RM) -rv build/ out/ *.class + +build: + gradle build + @echo Success! The .jar file should be in build/libs/. You may want to use \'sudo make install\' now. + +install: +ifdef OS + @echo Kloud can't be installed on Windows currently, please execute the jar file manually +else + ifeq ($(shell uname), Linux) + mkdir -p /usr/share/kloud/ + userdel kloud || true + useradd -r -d /usr/share/kloud kloud || true + chown -R kloud /usr/share/kloud + cp build/libs/kloud-*-all.jar /usr/share/kloud/ + echo -e "#!/bin/sh\nsudo -u kloud java -jar /usr/share/kloud/kloud-*-all.jar \$$@" > /usr/bin/kloud + chmod +x /usr/bin/kloud + else + @echo This OS doesn't support out automatic installation, please execute the jar file manually + endif +endif |