Initial Commit, add existing packages
This commit is contained in:
commit
159edb0097
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Built packages
|
||||||
|
*.nupkg
|
60
autodesk-meshmixer/autodesk-meshmixer.nuspec
Normal file
60
autodesk-meshmixer/autodesk-meshmixer.nuspec
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>autodesk-meshmixer</id>
|
||||||
|
<version>3.5</version>
|
||||||
|
<title>Autodesk Meshmixer</title>
|
||||||
|
<authors>Autodesk, Inc.</authors>
|
||||||
|
<owners>Vaquero</owners>
|
||||||
|
<licenseUrl>http://download.autodesk.com/us/FY16/Suites/LSA/en-US/lsa.html</licenseUrl>
|
||||||
|
<projectUrl>http://www.123dapp.com/meshmixer</projectUrl>
|
||||||
|
<iconUrl>https://cdn.rawgit.com/TomOne/various/05103fe90f844ffe2349b108382c886d715d8ab7/meshmixer.png</iconUrl>
|
||||||
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||||
|
<description>##Mesh and Mix
|
||||||
|
|
||||||
|
Design your own creations by combining two or more models with a few simple steps. It’s as easy as “cut-and-paste”.
|
||||||
|
|
||||||
|
##Pattern
|
||||||
|
|
||||||
|
Create beautiful overlay textures using a variety of simple grid and pattern options.
|
||||||
|
|
||||||
|
##Sculpt
|
||||||
|
|
||||||
|
Mold and refine surfaces real-time like virtual clay.
|
||||||
|
|
||||||
|
#3D printing with Meshmixer
|
||||||
|
Printing your 3D model has never been easier with the latest release of Meshmixer.
|
||||||
|
|
||||||
|
##Seamless digital-to-physical experience
|
||||||
|
Starting from any 123D software, 3D model in the Gallery, or any major 3D model file Format*, you can preview, refine and prepare your models to print with confidence.
|
||||||
|
|
||||||
|
*.stl, .obj, .amf, .ply, .wrl
|
||||||
|
|
||||||
|
##Supports any desktop 3D printer
|
||||||
|
Print directly from Meshmixer to your [Makerbot](http://www.makerbot.com/)
|
||||||
|
** or [Type A Machines](http://www.typeamachines.com/). Meshmixer is also compatible with Stratasys, and has the option to configure your own desktop printer.
|
||||||
|
|
||||||
|
** Windows 8.1 only
|
||||||
|
|
||||||
|
##Hassle-free 3D printing services
|
||||||
|
You don’t need to own a 3D printer to create amazing 3D-printed objects. Leave the 3D printing to our trusted partners: [i.materialise](http://i.materialise.com/), [Sculpteo](http://www.sculpteo.com/) and [Shapeways](http://www.shapeways.com/). Pick from dozens of different materials, colors and finishes, and preview your shopping cart right in Meshmixer.
|
||||||
|
|
||||||
|
Tune in to [Meshmixer 101](https://tinyurl.com/nkfm84a), a series of YouTube instructional videos, to learn the basics.
|
||||||
|
|
||||||
|
Autodesk Meshmixer is licenced under the 2016 Platform and Design Suites License and Services Agreement (including Autodesk Android Mobile Apps) (Platform and Design Suites LSA).
|
||||||
|
|
||||||
|
Meshmixer will install to its default installation folder (e.g. C:\Program Files\Autodesk\Meshmixer).
|
||||||
|
|
||||||
|
#### Package Parameters
|
||||||
|
The following package parameter can be set:
|
||||||
|
|
||||||
|
* `-ia /D=` - this is for the installation path. (e.g. with cmd: `choco install autodesk-meshmixer -ia /D="E:\Some Directory\somebody\Meshmixer"`)
|
||||||
|
|
||||||
|
**Please Note**: This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.</description>
|
||||||
|
<summary>Meshmixer is the ultimate tool for 3D mashups and remixes. Mash, mix, sculpt, stamp or paint your own 3D designs, or start from over 10,000 models in the Gallery. Now includes direct 3D print support.</summary>
|
||||||
|
<releaseNotes />
|
||||||
|
<copyright>© Autodesk, Inc. All Rights Reserved.</copyright>
|
||||||
|
<tags>123D meshmixer autodesk modeling 3d surface solid print admin</tags>
|
||||||
|
<packageSourceUrl>https://github.com/Vaquero84/chocolatey-packages/tree/master/automatic/autodesk-meshmixer</packageSourceUrl>
|
||||||
|
</metadata>
|
||||||
|
</package>
|
14
autodesk-meshmixer/tools/chocolateyInstall.ps1
Normal file
14
autodesk-meshmixer/tools/chocolateyInstall.ps1
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
$packageName = 'autodesk-meshmixer'
|
||||||
|
$installerType = 'exe'
|
||||||
|
$silentArgs = '/S'
|
||||||
|
$url64 = '\\ucs\software\Autodesk_Meshmixer_v3p5_Win64.exe'
|
||||||
|
$checksum64 = '5d08cb6254e4d4280137d6d37ec689fc3f0c61dad08bbc978a451ac16b7f271c'
|
||||||
|
$checksumType64 = 'sha256'
|
||||||
|
$validExitCodes = @(0,1223)
|
||||||
|
Install-ChocolateyPackage -PackageName $packageName `
|
||||||
|
-FileType $installerType `
|
||||||
|
-SilentArgs $silentArgs `
|
||||||
|
-Url64bit $url64 `
|
||||||
|
-ValidExitCodes $validExitCodes `
|
||||||
|
-Checksum64 $checksum64 `
|
||||||
|
-ChecksumType64 $checksumType64
|
20
chitubox/chitubox.nuspec
Normal file
20
chitubox/chitubox.nuspec
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>chitubox</id>
|
||||||
|
<version>1.6.1</version>
|
||||||
|
<title>CHITUBOX</title>
|
||||||
|
<authors>CBD-Tech</authors>
|
||||||
|
<owners>Adam</owners>
|
||||||
|
<projectUrl>https://www.chitubox.com/chitubox_free.html</projectUrl>
|
||||||
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
|
<description>A slicer for DLP 3D printing.</description>
|
||||||
|
<summary>A slicer for DLP 3D printing.</summary>
|
||||||
|
<releaseNotes />
|
||||||
|
<copyright>© 2019 CHITUBOX. All rights reserved.</copyright>
|
||||||
|
<tags>3d solid print</tags>
|
||||||
|
<dependencies>
|
||||||
|
<dependency id="vcredist140" />
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
</package>
|
14
chitubox/tools/chocolateyInstall.ps1
Normal file
14
chitubox/tools/chocolateyInstall.ps1
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
$packageName = 'chitubox'
|
||||||
|
$installerType = 'exe'
|
||||||
|
$silentArgs = '/S'
|
||||||
|
$url64 = '\\ucs\software\CHITUBOX64Install_1.6.1.exe'
|
||||||
|
$checksum64 = 'd399dcc7f44f3a34a878a93e1ca6f9c4fefe845a46a743c49e1353efda5cc16b'
|
||||||
|
$checksumType64 = 'sha256'
|
||||||
|
$validExitCodes = @(0,1223)
|
||||||
|
Install-ChocolateyPackage -PackageName $packageName `
|
||||||
|
-FileType $installerType `
|
||||||
|
-SilentArgs $silentArgs `
|
||||||
|
-Url64bit $url64 `
|
||||||
|
-ValidExitCodes $validExitCodes `
|
||||||
|
-Checksum64 $checksum64 `
|
||||||
|
-ChecksumType64 $checksumType64
|
Loading…
Reference in New Issue
Block a user