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/whohas | |
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/whohas')
-rw-r--r-- | homebrew/whohas/.beer | 33 | ||||
-rw-r--r-- | homebrew/whohas/.make.sh-auto | 6 | ||||
-rw-r--r-- | homebrew/whohas/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/whohas/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/whohas/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/whohas/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/whohas/download.sh | 1 |
7 files changed, 44 insertions, 0 deletions
diff --git a/homebrew/whohas/.beer b/homebrew/whohas/.beer new file mode 100644 index 000000000..66d1b7f6f --- /dev/null +++ b/homebrew/whohas/.beer @@ -0,0 +1,33 @@ +{ + "name": "Whohas", + "description": "Query multiple distributions", + "url": "https://github.com/whohas/whohas/releases/download/0.29.1/whohas-0.29.1.tar.gz", + "mirror": null, + "homepage": "http://www.philippwesche.org/200811/whohas/intro.html", + "depends": [], + "resource": [ + { + "name": "Acme::Damn", + "url": "https://cpan.metacpan.org/authors/id/I/IB/IBB/Acme-Damn-0.08.tar.gz" + }, + { + "name": "forks", + "url": "https://cpan.metacpan.org/authors/id/R/RY/RYBSKEJ/forks-0.36.tar.gz" + }, + { + "name": "Sys::SigAction", + "url": "https://cpan.metacpan.org/authors/id/L/LB/LBAXTER/Sys-SigAction-0.23.tar.gz" + } + ], + "conflicts": [], + "patches": [], + "install": [ + "ENV.prepend_create_path \"PERL5LIB\", libexec/\"lib/perl5\"", + "resources.each do |r|", + "r.stage do", + "system \"perl\", \"Makefile.PL\", \"INSTALL_BASE=#{libexec}\"", + "system \"make\", \"install\"" + ], + "version": "0.29.1", + "file": "whohas.rb" +}
\ No newline at end of file diff --git a/homebrew/whohas/.make.sh-auto b/homebrew/whohas/.make.sh-auto new file mode 100644 index 000000000..83e8bf617 --- /dev/null +++ b/homebrew/whohas/.make.sh-auto @@ -0,0 +1,6 @@ +pkg:setup +ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" +resources.each do |r| +r.stage do +perl Makefile.PL INSTALL_BASE=#{libexec} +make DESTDIR=${PKG_DEST} install diff --git a/homebrew/whohas/_metadata/description b/homebrew/whohas/_metadata/description new file mode 100644 index 000000000..effc7c923 --- /dev/null +++ b/homebrew/whohas/_metadata/description @@ -0,0 +1 @@ +Query multiple distributions diff --git a/homebrew/whohas/_metadata/homepage b/homebrew/whohas/_metadata/homepage new file mode 100644 index 000000000..6eb1e2715 --- /dev/null +++ b/homebrew/whohas/_metadata/homepage @@ -0,0 +1 @@ +http://www.philippwesche.org/200811/whohas/intro.html diff --git a/homebrew/whohas/_metadata/name b/homebrew/whohas/_metadata/name new file mode 100644 index 000000000..512e6d87b --- /dev/null +++ b/homebrew/whohas/_metadata/name @@ -0,0 +1 @@ +Whohas diff --git a/homebrew/whohas/_metadata/version b/homebrew/whohas/_metadata/version new file mode 100644 index 000000000..25939d35c --- /dev/null +++ b/homebrew/whohas/_metadata/version @@ -0,0 +1 @@ +0.29.1 diff --git a/homebrew/whohas/download.sh b/homebrew/whohas/download.sh new file mode 100755 index 000000000..94b244d20 --- /dev/null +++ b/homebrew/whohas/download.sh @@ -0,0 +1 @@ +wget https://github.com/whohas/whohas/releases/download/0.29.1/whohas-0.29.1.tar.gz
\ No newline at end of file |