From 0e8a74b069f3694369605636caec074cd0f5e297 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 17 Jan 2021 16:19:40 -0600 Subject: [PATCH] Add LICENSE to Makefile (for creating debs) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 3b87d5d..beabe98 100644 --- a/Makefile +++ b/Makefile @@ -34,12 +34,16 @@ amd64control: iosdebroot: ioscontrol mkdir -p iosdebroot/DEBIAN mkdir -p iosdebroot/usr/bin + mkdir -p iosdebroot/usr/share/doc/nekofetch cp ioscontrol iosdebroot/DEBIAN/control + cp LICENSE iosdebroot/usr/share/doc/nekofetch/copyright cp nekofetch iosdebroot/usr/bin/nekofetch amd64debroot: amd64control mkdir -p amd64debroot/DEBIAN mkdir -p amd64debroot/usr/bin + mkdir -p amd64debroot/usr/share/doc/nekofetch cp amd64control amd64debroot/DEBIAN/control + cp LICENSE amd64debroot/usr/share/doc/nekofetch/copyright cp nekofetch amd64debroot/usr/bin/nekofetch iosdeb: iosdebroot