diff --git a/inkstitch/inkstitch.nuspec b/inkstitch/inkstitch.nuspec new file mode 100644 index 0000000..6316627 --- /dev/null +++ b/inkstitch/inkstitch.nuspec @@ -0,0 +1,28 @@ + + + + + inkstitch + 3.0.1 + https://git.claremontmakerspace.org/CMS/chocolatey-packages + Adam + Ink/Stitch + Ink/Stitch + https://inkstitch.org/ + https://inkstitch.org/assets/images/inkstitch-logo.svg + 2023 Ink/Stitch + https://github.com/inkstitch/inkstitch/blob/main/LICENSE + true + https://github.com/inkstitch/inkstitch + https://inkstitch.org/docs/basic-usage/ + https://github.com/inkstitch/inkstitch/issues + inkstitch embroidery inkscape + Ink/Stitch: an Inkscape extension for machine embroidery design + Want to design embroidery pattern files (PES, DST, and many more) using free, open source software? + +Ink/Stitch aims to be a full-fledged embroidery digitizing platform based entirely on free, open source software. Our goal is to be approachable for hobbyists while also providing the power needed by professional digitizers. We also aim to provide a welcoming opens ource environment where contributing is fun and easy. + + + + + diff --git a/inkstitch/tools/chocolateybeforemodify.ps1 b/inkstitch/tools/chocolateybeforemodify.ps1 new file mode 100644 index 0000000..5a8fbd0 --- /dev/null +++ b/inkstitch/tools/chocolateybeforemodify.ps1 @@ -0,0 +1 @@ +Uninstall-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -ZipFileName "inkstitch-v3.0.1-windows.zip" diff --git a/inkstitch/tools/chocolateyinstall.ps1 b/inkstitch/tools/chocolateyinstall.ps1 new file mode 100644 index 0000000..e6091d2 --- /dev/null +++ b/inkstitch/tools/chocolateyinstall.ps1 @@ -0,0 +1,13 @@ +$ErrorActionPreference = 'Stop' +$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" + +$packageArgs = @{ + PackageName = $env:ChocolateyPackageName + UnzipLocation = "C:\Program Files\Inkscape\share\inkscape\extensions" + Url = "https://github.com/inkstitch/inkstitch/releases/download/v3.1.0/inkstitch-v3.1.0-windows.zip" + + Checksum = 'dc0c6d32e204db8ba499344f9effae6aa8cc89f2cd463019e1bb66b3c427e2066f8e96a7b9291d7cd734de5ecce5cb8c268a94c117443d3b764534abf7be8033' + ChecksumType = 'sha512' +} + +Install-ChocolateyZipPackage @packageArgs diff --git a/inkstitch/tools/chocolateyuninstall.ps1 b/inkstitch/tools/chocolateyuninstall.ps1 new file mode 100644 index 0000000..5a8fbd0 --- /dev/null +++ b/inkstitch/tools/chocolateyuninstall.ps1 @@ -0,0 +1 @@ +Uninstall-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -ZipFileName "inkstitch-v3.0.1-windows.zip"