Add shopbot package

This commit is contained in:
Adam Goldsmith 2020-02-26 20:43:01 -05:00
parent 7a41ac514b
commit 9c71e6daad
2 changed files with 34 additions and 0 deletions

20
shopbot/shopbot.nuspec Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>shopbot</id>
<version>3.8.50</version>
<title>Shopbot Control Software</title>
<authors>ShopBot Tools</authors>
<owners>Adam</owners>
<projectUrl>https://www.shopbottools.com/support/control-software</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>With the ShopBot Control Software, you can enter individual commands to move the tool or run a ShopBot Part File, a cutting file created in a CAD/CAM program such as the ShopBot Design Software Suite, to cut out a part.</description>
<summary>The software that runs ShopBot CNC Tools.</summary>
<releaseNotes />
<copyright>© 2006-2020 by ShopBot Tools, Inc.</copyright>
<tags>router cnc shopbot</tags>
<dependencies>
<dependency id="vcredist2005" />
</dependencies>
</metadata>
</package>

View File

@ -0,0 +1,14 @@
$packageName = 'shopbot'
$installerType = 'exe'
$silentArgs = '/verysilent /suppressmsgboxes /norestart /sp-'
$url64 = '\\ucs\software\Setup_Shopbot3_8_50.exe'
$checksum64 = '40ceb163b1cb6395bd4704db1da5359b20ee769ddb413609e4608d780db44c33'
$checksumType64 = 'sha256'
$validExitCodes = @(0,1223)
Install-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs $silentArgs `
-Url64bit $url64 `
-ValidExitCodes $validExitCodes `
-Checksum64 $checksum64 `
-ChecksumType64 $checksumType64