From b1c3066d4cdd8afe339f7f206d72c64c77e0b68e Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 2 Jan 2022 05:32:00 +0400 Subject: [PATCH] Now also store a copy of license when installing. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 41a1ca4..4e1fcde 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ DESTDIR=/ INSTALL_BINDIR=${DESTDIR}usr/bin INSTALL_CONFIGDIR=${DESTDIR}etc/${TARGET} INSTALL_SYSDSERVICEDIR=${DESTDIR}usr/lib/systemd/system +INSTALL_LICENSEDIR=${DESTDIR}usr/share/licenses/${TARGET} LDFLAGS=-ldflags "-s -w" @@ -19,6 +20,7 @@ ${TARGET}: ${SOURCES} install: install -Dm 0755 ${TARGET} ${INSTALL_BINDIR}/${TARGET} install -Dm 0644 contrib/config.example.json ${INSTALL_CONFIGDIR}/config.json + install -Dm 0644 LICENSE ${INSTALL_LICENSEDIR}/LICENSE install-service: install -Dm 0644 contrib/systemd/${TARGET}.service ${INSTALL_SYSDSERVICEDIR}/${TARGET}.service @@ -26,6 +28,7 @@ install-service: uninstall: rm ${INSTALL_BINDIR}/${TARGET} + rm ${INSTALL_LICENSEDIR}/LICENSE uninstall-service: ${SYSCTL} stop ${TARGET}.service