requirments added

This commit is contained in:
KAiZ 2019-11-19 13:06:14 +05:30
parent e2d2335f55
commit 5d32964098
2 changed files with 7 additions and 2 deletions

View file

@ -9,6 +9,8 @@ RUN apt-get install -qy inkscape x11-apps
COPY . /Bibata COPY . /Bibata
# Change Work Directory # Change Work Directory
WORKDIR /Bibata WORKDIR /Bibata
#install requirments
RUN make requir
# Building Source code # Building Source code
RUN make NAME=Bibata_Classic RUN make NAME=Bibata_Classic
RUN make link NAME=Bibata_Classic RUN make link NAME=Bibata_Classic

View file

@ -3,11 +3,14 @@
# make link NAME=CURSOR_NAME #for generating cursor X11 and Window both # make link NAME=CURSOR_NAME #for generating cursor X11 and Window both
# make clean # remove ALL cursors and objects # make clean # remove ALL cursors and objects
.DEFAULT_GOAL := build .DEFAULT_GOAL := requir
build: .PHONY := requir
requir:
@echo "installing Requirements..." @echo "installing Requirements..."
pip3 install -r requirements.txt pip3 install -r requirements.txt
build:
@echo "Building $(NAME)..." @echo "Building $(NAME)..."
python3 render-cursors.py ./src/$(NAME)/source-cursors.svg -o -a --name $(NAME) python3 render-cursors.py ./src/$(NAME)/source-cursors.svg -o -a --name $(NAME)
./tweak.sh $(NAME) ./tweak.sh $(NAME)