-
-
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.
- Loading branch information
1 parent
e8a3d25
commit 9cf39f1
Showing
4 changed files
with
75 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,47 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>install4j</id> | ||
<version>7.0.4</version> | ||
<title>install4j</title> | ||
<authors>Dr Ingo Kegel</authors> | ||
<owners>dtgm</owners> | ||
<licenseUrl>http://www.ej-technologies.com/buy/install4j/install4j_license.html</licenseUrl> | ||
<projectUrl>http://www.ej-technologies.com/products/install4j/overview.html</projectUrl> | ||
<iconUrl>https://cdn.rawgit.com/dtgm/chocolatey-packages/87f66d5e71c4db36c6ba759cb8bdc143c8bfd743/icons/install4j.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>install4j is a powerful multi-platform Java installer builder that generates native installers and application launchers for Java applications. | ||
|
||
#### Documentation | ||
* [Features](http://www.ej-technologies.com/products/install4j/features.html) | ||
* [FAQ](http://www.ej-technologies.com/buy/install4j/faq.html) | ||
* [API](https://resources.ej-technologies.com/install4j/help/api/overview-summary.html) | ||
* [Compare editions](http://www.ej-technologies.com/products/install4j/editions.html) | ||
* [Open source license](http://www.ej-technologies.com/buy/install4j/openSource/enter) | ||
|
||
#### Community | ||
* [StackOverflow](http://stackoverflow.com/questions/tagged/install4j) | ||
* [Twitter](https://twitter.com/IngoKegel) | ||
* [3rd-party extensions](http://www.ej-technologies.com/products/install4j/extensions.html) | ||
|
||
#### Commercial software | ||
* This package installs a 90 day trial of either Multi-Platform or Windows Edition. | ||
* Trial begins once activated after initial execution. | ||
* Internet connection required for trial activation (alternatively, request an [activation key via email](http://www.ej-technologies.com/download/install4j/trial))</description> | ||
<summary>Multi-Platform Java Installer Builder</summary> | ||
<releaseNotes>#### Program | ||
* [Blog](http://blog.ej-technologies.com/search/label/install4j) | ||
* [Changelog](http://www.ej-technologies.com/download/install4j/changelog.html#7.0.4) | ||
|
||
#### Package | ||
* Automatically built and uploaded by [dtgm](https://chocolatey.org/profiles/dtgm)</releaseNotes> | ||
<copyright>© 2001 ej-technologies GmbH</copyright> | ||
<tags>trial java installation builder</tags> | ||
<packageSourceUrl>https://github.com/dtgm/chocolatey-packages/tree/master/automatic/install4j/</packageSourceUrl> | ||
<docsUrl>http://resources.ej-technologies.com/install4j/help/doc/</docsUrl> | ||
<bugTrackerUrl>http://ej-technologies.com/support/bugReport</bugTrackerUrl> | ||
<dependencies> | ||
<dependency id="install4j.install" version="[7.0.4]" /> | ||
</dependencies> | ||
</metadata> | ||
</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 @@ | ||
# MetaPackage |
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,27 @@ | ||
# powershell v2 compatibility | ||
$psVer = $PSVersionTable.PSVersion.Major | ||
if ($psver -ge 3) { | ||
function Get-ChildItemDir {Get-ChildItem -Directory $args} | ||
} else { | ||
function Get-ChildItemDir {Get-ChildItem $args} | ||
} | ||
# MetaPackage | ||
$warningPreference = "Continue" | ||
$chocoLib = Join-Path $env:ChocolateyInstall "lib" | ||
if (Test-Path -PathType Container (Join-Path $chocoLib 'install4j.*')) { | ||
Write-Warning "Uninstall NOT complete." | ||
Write-Host | ||
@" | ||
This package is a metapackage; a chocolatey feature not yet fully implemented. | ||
To retain future compatibility this package does not uninstall the dependent | ||
package it points to as designated with *.install or *.portable.`n | ||
"@ | ||
Write-Warning "To finish removing the program installed by package install4j, please also run the command:" | ||
$text += " `n`tchoco uninstall " | ||
$list = (Get-ChildItemDir $chocoLib\install4j.*).Name | ||
foreach ($i in $list) { | ||
$text += "$i " | ||
} | ||
$text += "-y`n" | ||
Write-Host $text | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.