Skip to content

Commit

Permalink
Package download amazingmarvin
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed May 12, 2024
1 parent 852da4d commit 2287e0e
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
10 changes: 10 additions & 0 deletions automatic/amazingmarvin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[![](https://img.shields.io/chocolatey/v/amazingmarvin?color=green&label=amazingmarvin)](https://chocolatey.org/packages/amazingmarvin) [![](https://img.shields.io/chocolatey/dt/amazingmarvin)](https://chocolatey.org/packages/amazingmarvin)

## Amazing Marvin

Marvin incorporates principles from behavioral psychology to help you beat procrastination, feel in control and finish your todo list.

### Package-specific issue
If this package isn't up-to-date for some days, [Create an issue](https://github.com/tunisiano187/Chocolatey-packages/issues/new/choose)

Support the package maintainer and [![Patreon](https://cdn.jsdelivr.net/gh/tunisiano187/Chocolatey-packages@d15c4e19c709e7148588d4523ffc6dd3cd3c7e5e/icons/patreon.png)](https://www.patreon.com/tunisiano)
22 changes: 22 additions & 0 deletions automatic/amazingmarvin/amazingmarvin.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>amazingmarvin</id>
<version>1.41.2.0</version>
<title>Amazing Marvin</title>
<authors>Amazing Marvin</authors>
<owners>d_w</owners>
<packageSourceUrl></packageSourceUrl>
<licenseUrl>https://www.amazingmarvin.com/terms.html</licenseUrl>
<projectUrl>https://www.amazingmarvin.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Marvin incorporates principles from behavioral psychology to help you beat procrastination, feel in control and finish your todo list.</description>
<summary>Marvin incorporates principles from behavioral psychology to help you beat procrastination, feel in control and finish your todo list.</summary>
<releaseNotes />
<copyright />
<tags>productivity todo trial</tags>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
19 changes: 19 additions & 0 deletions automatic/amazingmarvin/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
$ErrorActionPreference = 'Stop';

$packageName = 'amazingmarvin'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'http://amazingmarvin.s3-website-us-east-1.amazonaws.com/MarvinSetup.exe'

$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = $url
softwareName = 'amazingmarvin*'
checksum = 'D59733BABCE5786D6F49DA57BD05CBD00E9448E003B4744F20807043B3819FB3'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
}

Install-ChocolateyPackage @packageArgs

0 comments on commit 2287e0e

Please sign in to comment.