diff options
author | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-20 20:49:46 -0500 |
---|---|---|
committer | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-23 20:18:47 -0500 |
commit | 12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch) | |
tree | 352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/nexus | |
parent | a2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff) |
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/nexus')
-rw-r--r-- | homebrew/nexus/.beer | 21 | ||||
-rw-r--r-- | homebrew/nexus/.make.sh-auto | 5 | ||||
-rw-r--r-- | homebrew/nexus/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/nexus/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/nexus/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/nexus/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/nexus/download.sh | 1 |
7 files changed, 31 insertions, 0 deletions
diff --git a/homebrew/nexus/.beer b/homebrew/nexus/.beer new file mode 100644 index 000000000..4d0142a6c --- /dev/null +++ b/homebrew/nexus/.beer @@ -0,0 +1,21 @@ +{ + "name": "Nexus", + "description": "Repository manager for binary software components", + "url": "https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/oss/nexus-2.14.11-01-bundle.tar.gz", + "mirror": null, + "homepage": "https://www.sonatype.org/", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "rm_f Dir[\"bin/*.bat\"]", + "inreplace \"nexus-#{version}/conf/nexus.properties\",", + "\"nexus-work=${bundleBasedir}/../sonatype-work/nexus\",", + "\"nexus-work=#{var}/nexus\"", + "libexec.install Dir[\"nexus-#{version}/*\"]", + "bin.install_symlink libexec/\"bin/nexus\"" + ], + "version": "2.14.11", + "file": "nexus.rb" +}
\ No newline at end of file diff --git a/homebrew/nexus/.make.sh-auto b/homebrew/nexus/.make.sh-auto new file mode 100644 index 000000000..e3ab90d7c --- /dev/null +++ b/homebrew/nexus/.make.sh-auto @@ -0,0 +1,5 @@ +pkg:setup +rm_f Dir["bin/*.bat"] +inreplace "nexus-#{version}/conf/nexus.properties", "nexus-work=${bundleBasedir}/../sonatype-work/nexus", "nexus-work=#{var}/nexus" +libexec.install Dir["nexus-#{version}/*"] +bin.install_symlink libexec/"bin/nexus" diff --git a/homebrew/nexus/_metadata/description b/homebrew/nexus/_metadata/description new file mode 100644 index 000000000..8441127d1 --- /dev/null +++ b/homebrew/nexus/_metadata/description @@ -0,0 +1 @@ +Repository manager for binary software components diff --git a/homebrew/nexus/_metadata/homepage b/homebrew/nexus/_metadata/homepage new file mode 100644 index 000000000..07d7a5794 --- /dev/null +++ b/homebrew/nexus/_metadata/homepage @@ -0,0 +1 @@ +https://www.sonatype.org/ diff --git a/homebrew/nexus/_metadata/name b/homebrew/nexus/_metadata/name new file mode 100644 index 000000000..755a6d770 --- /dev/null +++ b/homebrew/nexus/_metadata/name @@ -0,0 +1 @@ +Nexus diff --git a/homebrew/nexus/_metadata/version b/homebrew/nexus/_metadata/version new file mode 100644 index 000000000..ae8496e77 --- /dev/null +++ b/homebrew/nexus/_metadata/version @@ -0,0 +1 @@ +2.14.11 diff --git a/homebrew/nexus/download.sh b/homebrew/nexus/download.sh new file mode 100755 index 000000000..c11cbbcad --- /dev/null +++ b/homebrew/nexus/download.sh @@ -0,0 +1 @@ +wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/oss/nexus-2.14.11-01-bundle.tar.gz
\ No newline at end of file |