Skip to content

Commit

Permalink
Package download install4j
Browse files Browse the repository at this point in the history
  • Loading branch information
tunisiano187 committed Mar 30, 2024
1 parent e8a3d25 commit 9cf39f1
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 0 deletions.
47 changes: 47 additions & 0 deletions automatic/install4j/install4j.nuspec
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>
1 change: 1 addition & 0 deletions automatic/install4j/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# MetaPackage
27 changes: 27 additions & 0 deletions automatic/install4j/tools/chocolateyUninstall.ps1
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
}
Binary file added icons/install4j.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9cf39f1

Please sign in to comment.