File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ client/public/extimg/white/*.png
10
10
client /public /extimg /black /* .png
11
11
client /public /extimg /* .svg
12
12
dist /
13
+ linuxconfig /usr /
Original file line number Diff line number Diff line change 1
1
py = python3
2
2
pip = ${py} -m pip
3
3
4
- .PHONY : all puzzles pyrequirements test format build client extimg clean
4
+ .PHONY : all puzzles pyrequirements test format build client extimg clean deb
5
5
6
6
all : puzzles client
7
7
@@ -18,6 +18,14 @@ format: pyrequirements
18
18
$(py ) -m black server
19
19
$(py ) -m isort server
20
20
21
+ deb : build
22
+ rm -rf linuxconfig/usr/bin
23
+ mkdir -p linuxconfig/usr
24
+ cp -r dist/LiRush linuxconfig/usr/bin
25
+ mv linuxconfig/usr/bin/LiRush linuxconfig/usr/bin/lirush
26
+ dpkg-deb --build linuxconfig
27
+ mv linuxconfig.deb dist/lirush-0.2.0_amd64.deb
28
+
21
29
build : puzzles client
22
30
$(py ) -m PyInstaller LiRush.spec
23
31
Original file line number Diff line number Diff line change
1
+ Package: lirush
2
+ Version: 0.2.0
3
+ Section: custom
4
+ Priority: optional
5
+ Architecture: all
6
+ Essential: no
7
+ Installed-Size: 1024
8
+ Maintainer: https://r2dev2.github.io
9
+ Description: An open source implementation of Puzzle Rush
You can’t perform that action at this time.
0 commit comments