From 24bb775f25dd96c5f552bb7f1b702874ebdd85c6 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 31 Aug 2017 21:13:11 +0100 Subject: [PATCH] Install library locally for compilation --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a659b22..e9edc72 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ release: lib_path: @rm -rf $(LIB_DIR) @mkdir -p $(LIB_DIR) + @rm -f /usr/lib/libsciter-gtk-64.so pandoc: lib_path wget https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/${PANDOC_DL} -O $(LIB_DIR)/$(PANDOC_DL) @@ -34,6 +35,7 @@ wktox: lib_path sciter: lib_path wget https://sciter.com/sdk/sciter-sdk.zip -O $(LIB_DIR)/sciter.zip unzip -j $(LIB_DIR)/sciter.zip "bin.gtk/libsciter-gtk-64.so" -d $(LIB_DIR) + ln -sfP $(LIB_DIR)/libsciter-gtk-64.so /usr/lib/libsciter-gtk-64.so rm $(LIB_DIR)/sciter.zip lib: pandoc wktox sciter