mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-29 06:15:24 -04:00
requirments added
This commit is contained in:
parent
e2d2335f55
commit
5d32964098
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue