paleta icon indicating copy to clipboard operation
paleta copied to clipboard

[Feature] Include palettes/ in share/paleta when make installing

Open Nomarian opened this issue 1 year ago • 0 comments

Pretty much title

diff --git a/Makefile b/Makefile
index 63a53da..e71085a 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,9 @@ $(OBJ): $(HDR)
 install: paleta
        mkdir -p $(DESTDIR)$(PREFIX)/bin
        cp paleta  $(DESTDIR)$(PREFIX)/bin/
-
+       mkdir -p $(DESTDIR)$(PREFIX)/share/paleta
+       cp -r palettes/ $(DESTDIR)$(PREFIX)/share/paleta/
+       
 clean:
        rm -f paleta $(OBJ)

Nomarian avatar Jan 26 '23 01:01 Nomarian