Skip to content

Commit d58ed62

Browse files
made distro specific install builds
1 parent 0d0a4f1 commit d58ed62

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#Makefile for QuickOverflow
22
#Update 2.1.0 - Added make to replace install.sh
33
#type make into terminal to install QuickOverflow
4-
QuickOverflow: main.c
4+
ubuntu: main.c
5+
sudo apt install pip
6+
sudo apt install pipenv
7+
pipenv shell
58
pip3 install -r requirements.txt --break-system-packages
69
mkdir -p bin
710
sudo gcc main.c -o /usr/local/bin/QuickOverflow
@@ -18,7 +21,7 @@ arch_linux: main.c
1821
pipenv install --python 3.13
1922
pipenv shell
2023
pip3 install -r requirements.txt
21-
pyinstaller search.py --onefile
24+
PyInstaller search.py --onefile
2225
sudo mv "dist/search" "/usr/local/bin"
2326

2427
#to remove the binaries, use this

0 commit comments

Comments
 (0)