-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |