-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed installer scripts, added a makefile
- Loading branch information
1 parent
1c11ad2
commit bcf880c
Showing
5 changed files
with
19 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.PHONY: clean all | ||
|
||
all: | ||
xbuild ./src/Hassium.sln | ||
|
||
clean: | ||
cd ~ && rm .Hassium -rf | ||
rm /usr/bin/Hassium.exe -rf | ||
rm /usr/bin/hassium -rf | ||
rm ./src/Hassium/bin/Debug/Hassium.exe -rf | ||
|
||
install: | ||
mkdir -p ~/.Hassium | ||
cp ./src/Hassium/bin/Debug/Hassium.exe /usr/bin/Hassium.exe | ||
echo "#! /bin/bash" > /usr/bin/hassium | ||
echo "/usr/bin/mono /usr/bin/Hassium.exe \$$@" >> /usr/bin/hassium | ||
chmod +x /usr/bin/hassium |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.