Skip to content

Commit c77af83

Browse files
committed
can build deb now
1 parent 75337bc commit c77af83

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ client/public/extimg/white/*.png
1010
client/public/extimg/black/*.png
1111
client/public/extimg/*.svg
1212
dist/
13+
linuxconfig/usr/

Makefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
py = python3
22
pip = ${py} -m pip
33

4-
.PHONY: all puzzles pyrequirements test format build client extimg clean
4+
.PHONY: all puzzles pyrequirements test format build client extimg clean deb
55

66
all: puzzles client
77

@@ -18,6 +18,14 @@ format: pyrequirements
1818
$(py) -m black server
1919
$(py) -m isort server
2020

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+
2129
build: puzzles client
2230
$(py) -m PyInstaller LiRush.spec
2331

linuxconfig/DEBIAN/control

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

0 commit comments

Comments
 (0)