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/tundra | |
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/tundra')
-rw-r--r-- | homebrew/tundra/.beer | 23 | ||||
-rw-r--r-- | homebrew/tundra/.make.sh-auto | 4 | ||||
-rw-r--r-- | homebrew/tundra/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/tundra/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/tundra/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/tundra/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/tundra/download.sh | 1 |
7 files changed, 32 insertions, 0 deletions
diff --git a/homebrew/tundra/.beer b/homebrew/tundra/.beer new file mode 100644 index 000000000..993d53209 --- /dev/null +++ b/homebrew/tundra/.beer @@ -0,0 +1,23 @@ +{ + "name": "Tundra", + "description": "Code build system that tries to be fast for incremental builds", + "url": "https://github.com/deplinenoise/tundra/archive/v2.08.tar.gz", + "mirror": null, + "homepage": "https://github.com/deplinenoise/tundra", + "depends": [], + "resource": [ + { + "name": "gtest", + "url": "https://github.com/google/googletest/archive/release-1.8.0.tar.gz" + } + ], + "conflicts": [], + "patches": [], + "install": [ + "(buildpath/\"unittest/googletest\").install resource(\"gtest\")", + "system \"make\"", + "system \"make\", \"install\", \"PREFIX=#{prefix}\"" + ], + "version": "2.08", + "file": "tundra.rb" +}
\ No newline at end of file diff --git a/homebrew/tundra/.make.sh-auto b/homebrew/tundra/.make.sh-auto new file mode 100644 index 000000000..1f801637d --- /dev/null +++ b/homebrew/tundra/.make.sh-auto @@ -0,0 +1,4 @@ +pkg:setup +(buildpath/"unittest/googletest").install resource("gtest") +make +make DESTDIR=${PKG_DEST} install PREFIX=${PKG_TAPF} diff --git a/homebrew/tundra/_metadata/description b/homebrew/tundra/_metadata/description new file mode 100644 index 000000000..59dd2e92b --- /dev/null +++ b/homebrew/tundra/_metadata/description @@ -0,0 +1 @@ +Code build system that tries to be fast for incremental builds diff --git a/homebrew/tundra/_metadata/homepage b/homebrew/tundra/_metadata/homepage new file mode 100644 index 000000000..cbfa51091 --- /dev/null +++ b/homebrew/tundra/_metadata/homepage @@ -0,0 +1 @@ +https://github.com/deplinenoise/tundra diff --git a/homebrew/tundra/_metadata/name b/homebrew/tundra/_metadata/name new file mode 100644 index 000000000..83ae792e3 --- /dev/null +++ b/homebrew/tundra/_metadata/name @@ -0,0 +1 @@ +Tundra diff --git a/homebrew/tundra/_metadata/version b/homebrew/tundra/_metadata/version new file mode 100644 index 000000000..9e33c6566 --- /dev/null +++ b/homebrew/tundra/_metadata/version @@ -0,0 +1 @@ +2.08 diff --git a/homebrew/tundra/download.sh b/homebrew/tundra/download.sh new file mode 100755 index 000000000..c8a8da4b4 --- /dev/null +++ b/homebrew/tundra/download.sh @@ -0,0 +1 @@ +wget https://github.com/deplinenoise/tundra/archive/v2.08.tar.gz
\ No newline at end of file |