Merge pull request #34 from eyedeekay/master

Includable NSIS installer script and example
pull/35/head
knaccc 3 years ago committed by GitHub
commit f0b382802f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,44 @@
!define ZERONAME "I2P-Zero"
!define I2P64INSTDIR "$PROGRAMFILES64\I2P\"
!define I2P32INSTDIR "$PROGRAMFILES32\I2P\"
!define ZEROINSTDIR "$PROGRAMFILES64\${APPNAME}\"
function buildZero
!system "echo '#! /usr/bin/env sh' > build-docker.sh"
!system "echo 'docker rm -f i2p-zero-build' >> build-docker.sh"
!system "echo 'docker run -td --name i2p-zero-build --rm ubuntu' >> build-docker.sh"
!system "echo 'docker exec -ti i2p-zero-build bash -c ;' >> build-docker.sh"
!system "echo ' apt-get update && ' >> build-docker.sh"
!system "echo ' apt-get -y install git wget zip unzip && ' >> build-docker.sh"
!system "echo ' git clone https://github.com/i2p-zero/i2p-zero.git && ' >> build-docker.sh"
!system "echo ' cd i2p-zero && bash bin/build-all-and-zip.sh;' >> build-docker.sh"
!system "echo 'docker cp i2p-zero-build:/i2p-zero/dist-zip' ./ >> build-docker.sh"
!system "echo 'docker container stop i2p-zero-build' >> build-docker.sh"
!system "sed -i $\"s|;|'|g$\" build-docker.sh"
!system "chmod +x build-docker.sh"
!system ./build-docker.sh
!system "unzip dist-zip/i2p-zero-win-gui.*.zip"
!system "rm -rf I2P-Zero"
!system "mv i2p-zero-win-gui.* I2P-Zero"
functionEnd
function installZero
${If} ${FileExists} `$I2P64INSTDIR\I2P.exe`
SetOutPath $ZEROINSTDIR
${If} ${FileExists} `$I2P32INSTDIR\I2P.exe`
SetOutPath $ZEROINSTDIR
${Else}
SetOutPath $ZEROINSTDIR
File /a /r "./I2P-Zero/"
CreateShortcut "$SMPROGRAMS\Run I2P-Zero.lnk" "$ZEROINSTDIR\router\i2p-zero.exe"
${EndIf}
functionEnd
function uninstallZero
Delete "$SMPROGRAMS\Run I2P-Zero.lnk"
RMDir $INSTDIR
functionEnd

@ -0,0 +1,49 @@
UniCode true
# define name of installer
OutFile "../I2P-Zero-installer.exe"
# define installation directory
!define APPNAME "I2P-Zero"
InstallDir "$PROGRAMFILES64\${APPNAME}\"
!define LICENSE_TITLE "BSD 3-Clause License"
PageEx license
licensetext "${LICENSE_TITLE}"
licensedata "../LICENSE"
PageExEnd
Page instfiles
# For removing Start Menu shortcut in Windows 7
RequestExecutionLevel admin
# Include the i2p-zero.nsi script
!include i2p-zero.nsi
# start default section
Section
# Call the function that builds an I2P-Zero in the current directory
Call buildZero
# Call the function that installs I2P-Zero
Call installZero
# create the uninstaller
WriteUninstaller "$INSTDIR\uninstall.exe"
# end default section
SectionEnd
# uninstaller section start
Section "uninstall"
# Call the function that un-installs I2P-Zero
Call uninstallZero
# first, delete the uninstaller
Delete "$INSTDIR\uninstall.exe"
Delete "$SMPROGRAMS\Run I2P-Zero.lnk"
RMDir $INSTDIR
# uninstaller section end
SectionEnd
Loading…
Cancel
Save