From 5d329640987107c7f9c802df7afd8127ba0216fb Mon Sep 17 00:00:00 2001 From: KAiZ <24286590+KaizIqbal@users.noreply.github.com> Date: Tue, 19 Nov 2019 13:06:14 +0530 Subject: [PATCH] requirments added --- Dockerfile | 2 ++ Makefile | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ab86663..250819ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN apt-get install -qy inkscape x11-apps COPY . /Bibata # Change Work Directory WORKDIR /Bibata +#install requirments +RUN make requir # Building Source code RUN make NAME=Bibata_Classic RUN make link NAME=Bibata_Classic diff --git a/Makefile b/Makefile index 0e798af0..4008ac54 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,14 @@ # make link NAME=CURSOR_NAME #for generating cursor X11 and Window both # make clean # remove ALL cursors and objects -.DEFAULT_GOAL := build +.DEFAULT_GOAL := requir -build: +.PHONY := requir +requir: @echo "installing Requirements..." pip3 install -r requirements.txt + +build: @echo "Building $(NAME)..." python3 render-cursors.py ./src/$(NAME)/source-cursors.svg -o -a --name $(NAME) ./tweak.sh $(NAME)