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/findutils | |
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/findutils')
-rw-r--r-- | homebrew/findutils/.beer | 16 | ||||
-rw-r--r-- | homebrew/findutils/.make.sh-auto | 2 | ||||
-rw-r--r-- | homebrew/findutils/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/findutils/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/findutils/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/findutils/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/findutils/download.sh | 1 |
7 files changed, 23 insertions, 0 deletions
diff --git a/homebrew/findutils/.beer b/homebrew/findutils/.beer new file mode 100644 index 000000000..42d9187c6 --- /dev/null +++ b/homebrew/findutils/.beer @@ -0,0 +1,16 @@ +{ + "name": "Findutils", + "description": "Collection of GNU find, xargs, and locate", + "url": "https://ftp.gnu.org/gnu/findutils/findutils-4.6.0.tar.gz", + "mirror": "https://ftpmirror.gnu.org/findutils/findutils-4.6.0.tar.gz", + "homepage": "https://www.gnu.org/software/findutils/", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "(var/\"locate\").mkpath" + ], + "version": "4.6.0", + "file": "findutils.rb" +}
\ No newline at end of file diff --git a/homebrew/findutils/.make.sh-auto b/homebrew/findutils/.make.sh-auto new file mode 100644 index 000000000..b6d7a6853 --- /dev/null +++ b/homebrew/findutils/.make.sh-auto @@ -0,0 +1,2 @@ +pkg:setup +(var/"locate").mkpath diff --git a/homebrew/findutils/_metadata/description b/homebrew/findutils/_metadata/description new file mode 100644 index 000000000..a662ce7da --- /dev/null +++ b/homebrew/findutils/_metadata/description @@ -0,0 +1 @@ +Collection of GNU find, xargs, and locate diff --git a/homebrew/findutils/_metadata/homepage b/homebrew/findutils/_metadata/homepage new file mode 100644 index 000000000..43ba40f70 --- /dev/null +++ b/homebrew/findutils/_metadata/homepage @@ -0,0 +1 @@ +https://www.gnu.org/software/findutils/ diff --git a/homebrew/findutils/_metadata/name b/homebrew/findutils/_metadata/name new file mode 100644 index 000000000..5dda6cad1 --- /dev/null +++ b/homebrew/findutils/_metadata/name @@ -0,0 +1 @@ +Findutils diff --git a/homebrew/findutils/_metadata/version b/homebrew/findutils/_metadata/version new file mode 100644 index 000000000..6016e8add --- /dev/null +++ b/homebrew/findutils/_metadata/version @@ -0,0 +1 @@ +4.6.0 diff --git a/homebrew/findutils/download.sh b/homebrew/findutils/download.sh new file mode 100755 index 000000000..4fa18a9e6 --- /dev/null +++ b/homebrew/findutils/download.sh @@ -0,0 +1 @@ +wget https://ftp.gnu.org/gnu/findutils/findutils-4.6.0.tar.gz || wget https://ftpmirror.gnu.org/findutils/findutils-4.6.0.tar.gz
\ No newline at end of file |