diff --git a/cricut-design-space/README.md b/cricut-design-space/README.md new file mode 100644 index 0000000..4d267ce --- /dev/null +++ b/cricut-design-space/README.md @@ -0,0 +1,22 @@ +# Cricut Design Space Chocolatey Package + + +## Summary + +Chocolatey package configuration for the Cricut Design Space application. + +## Creating Nuget Package + +Clone the repository and use Chocolatey to create the package: + + $ choco pack + +## Testing Nuget Package + +Follow the instructions at the URL below to create and use a Chocolatey test environment: + + https://github.com/chocolatey-community/chocolatey-test-environment + +Note: as March 10, 2020, the default `shell/InstallChocolatey.ps1` file was not creating a TLS channel and thus would not install Chocolatey in the virtual machine. The link below contains a fix. Once the pull request is accepted in the test environment repository this message will be removed. + + https://github.com/chocolatey-community/chocolatey-test-environment/pull/49/commits/6b5563c52cf208834cc662e3f14a00bdad9bf567 \ No newline at end of file diff --git a/cricut-design-space/cricutdesignspace.nuspec b/cricut-design-space/cricutdesignspace.nuspec new file mode 100644 index 0000000..adb8621 --- /dev/null +++ b/cricut-design-space/cricutdesignspace.nuspec @@ -0,0 +1,26 @@ + + + + cricutdesignspace + 6.6.121 + stevenpickles + CricutDesignSpace (Install) + Cricut + https://design.cricut.com/ + https://is5-ssl.mzstatic.com/image/thumb/Purple114/v4/2d/e1/51/2de1511b-f8ad-320c-77d9-e809e1d65928/AppIcon-0-0-1x_U007emarketing-0-0-0-9-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/246x0w.png + 2021 Cricut, Inc. + https://us.cricut.com/legal + false + + + https://help.cricut.com/hc/en-us/articles/360009428814-Downloading-and-Installing-Design-Space#windowsinstall + https://help.cricut.com/hc/en-us/articles/360020316674-Cricut-Contact-Information + cricut design space + Design and wirelessly cut using Cricut Explore and Cricut Maker machines. + Cricut Design Space is a companion app that lets you design and wirelessly cut with Cricut Explore and Cricut Maker machines. Create a project from scratch or browse thousands of images, predesigned Make It Now projects, and fonts in the Cricut Image Library. + No release notes are available from the manufacturer. + + + + + diff --git a/cricut-design-space/tools/chocolateyinstall.ps1 b/cricut-design-space/tools/chocolateyinstall.ps1 new file mode 100644 index 0000000..2108aa3 --- /dev/null +++ b/cricut-design-space/tools/chocolateyinstall.ps1 @@ -0,0 +1,40 @@ + +$ErrorActionPreference = 'Stop'; +$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" +$url = 'https://staticcontent.cricut.com/a/software/win32-native/Cricut%20Design%20Space%20Install%20v6.6.121.exe' + +$packageArgs = @{ + packageName = $env:ChocolateyPackageName + unzipLocation = $toolsDir + fileType = 'EXE' + url = $url + + softwareName = 'cricutdesignspace*' + + checksum = 'E19EF45C5836A2742CEA1A81DF4B97D00CA3594CB0AC92FD413BD108BFA9F963' + checksumType = 'sha256' + + silentArgs = '/S' + validExitCodes= @(0) +} + +Install-ChocolateyPackage @packageArgs + + + + + + + + + + + + + + + + + + +