diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31decfc --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.swp +*.exe diff --git a/icons/vdos.png b/icons/vdos.png new file mode 100755 index 0000000..02f49c1 Binary files /dev/null and b/icons/vdos.png differ diff --git a/packages/vdos/tools/chocolateyinstall.ps1 b/packages/vdos/tools/chocolateyinstall.ps1 new file mode 100755 index 0000000..3d0c91e --- /dev/null +++ b/packages/vdos/tools/chocolateyinstall.ps1 @@ -0,0 +1,20 @@ +# vDOS for Windows +# 2011-2018 foo.li systeme + software + +# download site has ssl issues, setup is included in package... + +# package installs to 'default' location: c:\vDOS + +$packageName = 'vdos' +$version = '2017.08.01' +$installerType = 'exe' +$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path) +$setupFullPath = Join-Path $scriptPath 'vDosSetup.exe' +$silentArgs = '/VERYSILENT /NORESTART /SP-' + +try { + Install-ChocolateyPackage $packageName $installerType $silentArgs $setupFullPath + Remove-Item $setupFullPath -ErrorAction SilentlyContinue +} catch { + throw $_.Exception +} \ No newline at end of file diff --git a/packages/vdos/tools/chocolateyuninstall.ps1 b/packages/vdos/tools/chocolateyuninstall.ps1 new file mode 100755 index 0000000..7e9cab7 --- /dev/null +++ b/packages/vdos/tools/chocolateyuninstall.ps1 @@ -0,0 +1,17 @@ +# vDOS Removal +# 2011-2018 foo.li systeme + software + +$packageName = 'vdos' +$version = '2017.08.01' +$vdosPath = "$env:SystemDrive" + "\vDos" + +try { + if (Test-Path $vdosPath) { + Write-Host 'removing directory ' $vdosPath + Remove-Item $vdosPath -Recurse -Force + } else { + Write-Host 'could not detect ' $vdosPath ' files.' + } +} catch { + throw $_.Exception +} \ No newline at end of file diff --git a/packages/vdos/vdos.nuspec b/packages/vdos/vdos.nuspec new file mode 100755 index 0000000..9b87a80 --- /dev/null +++ b/packages/vdos/vdos.nuspec @@ -0,0 +1,21 @@ + + + + vdos + 2017.08.01 + vDOS + Jos Schaars + foo.li systeme + software + https://sourceforge.net/projects/vdos/ + https://sourceforge.net/projects/vdos/ + https://raw.githubusercontent.com/peterbeck/chocolatey/master/icons/kvm.png + true + KVM Virt Viewer + Windows 64-bit doesn’t support DOS applications. Windows 32-bit included NTVDM, + to some extend facilitating DOS programs to run. PC’s now come with Windows 10 64-bit installed, + mostly without an option to downgrade to Windows 32-bit. vDOS takes care of this limitation. + + initial packaging + dos vdos windows10x64 + +