diff --git a/.gitignore b/.gitignore index f370039a2..604f6d659 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ dist .cache config.gypi assets/webui +.nupkg diff --git a/pkgs/chocolatey/ipfs-desktop.nuspec b/pkgs/chocolatey/ipfs-desktop.nuspec new file mode 100644 index 000000000..8203bd681 --- /dev/null +++ b/pkgs/chocolatey/ipfs-desktop.nuspec @@ -0,0 +1,25 @@ + + + + ipfs-desktop + 0.7.0 + IPFS Desktop + ipfs-shipyard + https://github.com/ipfs-shipyard/ipfs-desktop/ + https://dashboard.snapcraft.io/site_media/appmedia/2017/11/ipfs.ico.png + https://raw.githubusercontent.com/ipfs-shipyard/ipfs-desktop/master/LICENSE + https://github.com/ipfs-shipyard/ipfs-desktop/ + https://github.com/ipfs-shipyard/ipfs-desktop/issues + ipfs-desktop ipfs p2p distributed InterPlanetary-File-System gateway protocol + A desktop client for IPFS. + + IPFS Desktop + + A desktop client for [IPFS](https://ipfs.io). + You don't need the command line to run an IPFS node. Just install IPFS Desktop and have all the power of IPFS in your hands. Powered by [Web UI](https://github.com/ipfs-shipyard/ipfs-webui). + + + + + + diff --git a/pkgs/chocolatey/tools/LICENSE.txt b/pkgs/chocolatey/tools/LICENSE.txt new file mode 100644 index 000000000..7f91602ce --- /dev/null +++ b/pkgs/chocolatey/tools/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2018 Protocol Labs, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/pkgs/chocolatey/tools/chocolateyinstall.ps1 b/pkgs/chocolatey/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..c6d4c352a --- /dev/null +++ b/pkgs/chocolatey/tools/chocolateyinstall.ps1 @@ -0,0 +1,17 @@ +$ErrorActionPreference = 'Stop'; + +$url = 'https://github.com/ipfs-shipyard/ipfs-desktop/releases/download/v0.7.0/ipfs-desktop-setup-0.7.0.exe' +$checksum = '6361E99B6A32481E6879F23E95A41A04A61707BD16A41086AC30F9090806EABE' + +$packageArgs = @{ + packageName = 'ipfs-desktop' + fileType = 'EXE' + softwareName = 'ipfs-desktop' + url = $url + checksum = $checksum + checksumType = 'sha256' + silentArgs = "/S" + validExitCodes= @(0) +} + +Install-ChocolateyPackage @packageArgs