This repository was archived by the owner on Mar 17, 2018. It is now read-only.
forked from ParkitectNexus/ParkitectNexusClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
45 additions
and
45 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 |
---|---|---|
@@ -1,34 +1,32 @@ | ||
prefix = /usr/local | ||
PREFIX = /usr/ | ||
|
||
all: build | ||
|
||
build: | ||
wget -nc https://dist.nuget.org/win-x86-commandline/latest/nuget.exe | ||
mono nuget.exe install ./src/ParkitectNexus.Client.Linux/packages.config -outputdirectory ./packages | ||
mono nuget.exe install ./src/ParkitectNexus.Client.Base/packages.config -outputdirectory ./packages | ||
mono nuget.exe install ./src/ParkitectNexus.Data/packages.config -outputdirectory ./packages | ||
mono nuget.exe install ./src/ParkitectNexus.Mod.ModLoader/packages.config -outputdirectory ./packages | ||
xbuild /p:Configuration=Release ./src/ParkitectNexus.Client.Base/ParkitectNexus.Client.Base.csproj /target:build | ||
xbuild /p:Configuration=Release ./src/ParkitectNexus.Data/ParkitectNexus.Data.csproj /target:build | ||
xbuild /p:Configuration=Release ./src/ParkitectNexus.Mod.ModLoader/ParkitectNexus.Mod.ModLoader.csproj /target:build | ||
xbuild /p:Configuration=Release ./src/ParkitectNexus.Client.Linux/ParkitectNexus.Client.Linux.csproj /target:build | ||
rm -rf ./nuget.exe | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Client.Base/ParkitectNexus.Client.Base.csproj /target:build | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Data/ParkitectNexus.Data.csproj /target:build | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Mod.ModLoader/ParkitectNexus.Mod.ModLoader.csproj /target:build | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Client.Linux/ParkitectNexus.Client.Linux.csproj /target:build | ||
|
||
|
||
install: build | ||
install -d $(DESTDIR)/opt/ParkitectNexus/ $(DESTDIR)/share/applications/ | ||
install -d $(DESTDIR)/opt/ParkitectNexus/ $(DESTDIR)$(PREFIX)/share/applications/ | ||
install -m 775 src/ParkitectNexus.Client.Linux/bin/Release/*.dll $(DESTDIR)/opt/ParkitectNexus | ||
install -m 664 src/ParkitectNexus.Client.Linux/bin/Release/*.dll.mdb $(DESTDIR)/opt/ParkitectNexus | ||
install -m 664 src/ParkitectNexus.Client.Linux/bin/Release/*.config $(DESTDIR)/opt/ParkitectNexus | ||
install -m 775 src/ParkitectNexus.Client.Linux/bin/Release/*.exe $(DESTDIR)/opt/ParkitectNexus | ||
install -m 664 src/ParkitectNexus.Client.Linux/bin/Release/*.exe.mdb $(DESTDIR)/opt/ParkitectNexus | ||
install -m 644 -o root ./parkitectnexus.desktop $(DESTDIR)/share/applications/parkitectnexus.desktop | ||
install -m 644 -o root ./parkitectnexus.desktop $(DESTDIR)$(PREFIX)/share/applications/parkitectnexus.desktop | ||
install ./images/parkitectnexus_logo/parkitectnexus_logo-128x128.png $(DESTDIR)/opt/ParkitectNexus/parkitectnexus_logo.png | ||
|
||
clean: | ||
git clean -x -d -f | ||
|
||
uninstall: | ||
-rm -f $(DESTDIR)/opt/ParkitectNexus | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Client.Base/ParkitectNexus.Client.Base.csproj /target:clean | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Data/ParkitectNexus.Data.csproj /target:clean | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Mod.ModLoader/ParkitectNexus.Mod.ModLoader.csproj /target:clean | ||
xbuild /p:Configuration=Release src/ParkitectNexus.Client.Linux/ParkitectNexus.Client.Linux.csproj /target:clean | ||
rm -rf ./nuget.exe | ||
distclean: clean | ||
|
||
.PHONY: all install clean distclean uninstall | ||
.PHONY: all install clean distclean | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
parkitect-nexus-client (3.0.0) trusty; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- michael-pollind <[email protected]> Thu, 15 Dec 2016 13:11:14 -0800 | ||
parkitect-nexus-client (3.0.1) xenial; urgency=low | ||
* Initial release. | ||
-- michael-pollind <[email protected]> Thu, 15 Dec 2016 13:11:14 -0800 |
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
Source: parkitect-nexus-client | ||
Maintainer: michael-pollind <[email protected]> | ||
Build-Depends: mono-complete (>= 2.10.8), debhelper (>=9) | ||
Standards-Version: 2.1.5980.38291 | ||
Homepage: https://parkitectnexus.com/ | ||
|
||
Package: parkitect-nexus-client | ||
Architecture: any | ||
Section: games | ||
Priority: optional | ||
Depends: mono-complete (>= 2.10.8) | ||
Description: An automatic blueprint and savegames installer for ParkitectNexus. | ||
The Parkitect Nexus client is an application used to download and install | ||
mods from ParkitectNexus. The client will download, and compile mods for | ||
the Parkitect. | ||
Source: parkitect-nexus-client | ||
Maintainer: michael-pollind <[email protected]> | ||
Section: games | ||
Build-Depends: | ||
mono-complete (>= 2.10.8), | ||
debhelper (>=9), | ||
mono-reference-assemblies-2.0(>= 2.10.8), | ||
mono-reference-assemblies-3.5(>= 2.10.8), | ||
mono-reference-assemblies-4.0(>= 2.10.8) | ||
Standards-Version: 2.1.5980.38291 | ||
Homepage: https://parkitectnexus.com/ | ||
|
||
Package: parkitect-nexus-client | ||
Architecture: any | ||
Priority: optional | ||
Depends: mono-complete (>= 2.10.8) | ||
Description: An automatic blueprint and savegames installer for ParkitectNexus. | ||
The Parkitect Nexus client is an application used to download and install | ||
mods from ParkitectNexus. The client will download, and compile mods for | ||
the Parkitect. |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[Desktop Entry] | ||
Name=parkitectnexus | ||
Exec=/opt/ParkitectNexus/parkitectnexus %u | ||
Exec=mono /opt/ParkitectNexus/ParkitectNexus.Client.exe %u | ||
Comment=A mod installer for Parkitect | ||
GenericName=Parkitect Nexus | ||
Icon=/opt/ParkitectNexus/parkitectnexus_logo.png | ||
Categories=Utility; | ||
StartupNotify=true | ||
Terminal=false | ||
Type=Application | ||
MimeType=x-scheme-handler/parkitectnexus; | ||
MimeType=x-scheme-handler/parkitectnexus; |
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