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/boostat155 | |
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/boostat155')
-rw-r--r-- | homebrew/boostat155/.beer | 33 | ||||
-rw-r--r-- | homebrew/boostat155/.make.sh-auto | 4 | ||||
-rw-r--r-- | homebrew/boostat155/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/boostat155/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/boostat155/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/boostat155/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/boostat155/download.sh | 1 | ||||
-rwxr-xr-x | homebrew/boostat155/patches.sh | 3 |
8 files changed, 45 insertions, 0 deletions
diff --git a/homebrew/boostat155/.beer b/homebrew/boostat155/.beer new file mode 100644 index 000000000..a1309d53d --- /dev/null +++ b/homebrew/boostat155/.beer @@ -0,0 +1,33 @@ +{ + "name": "BoostAT155", + "description": "Collection of portable C++ source libraries", + "url": "https://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2", + "mirror": null, + "homepage": "https://www.boost.org", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [ + { + "url": "https://github.com/boostorg/atomic/commit/6bb71fdd.diff?full_index=1", + "strip": "2" + }, + { + "url": "https://github.com/boostorg/atomic/commit/e4bde20f.diff?full_index=1", + "strip": "2" + }, + { + "url": "https://github.com/boostorg/chrono/commit/143260d.diff?full_index=1", + "strip": "2" + } + ], + "install": [ + "inreplace \"boost/archive/iterators/transform_width.hpp\",", + "\"#include <boost/iterator/iterator_traits.hpp>\",", + "\"#include <boost/iterator/iterator_traits.hpp>\\n#include <algorithm>\"", + "open(\"user-config.jam\", \"a\") do |file|", + "file.write \"using darwin : : #{ENV.cxx} ;\\n\"" + ], + "version": "1_55_0", + "file": "boost@1.55.rb" +}
\ No newline at end of file diff --git a/homebrew/boostat155/.make.sh-auto b/homebrew/boostat155/.make.sh-auto new file mode 100644 index 000000000..eb939c882 --- /dev/null +++ b/homebrew/boostat155/.make.sh-auto @@ -0,0 +1,4 @@ +pkg:setup +inreplace "boost/archive/iterators/transform_width.hpp", "#include <boost/iterator/iterator_traits.hpp>", "#include <boost/iterator/iterator_traits.hpp>\n#include <algorithm>" +open("user-config.jam", "a") do |file| +file.write "using darwin : : #{ENV.cxx} ;\n" diff --git a/homebrew/boostat155/_metadata/description b/homebrew/boostat155/_metadata/description new file mode 100644 index 000000000..c257d1eb9 --- /dev/null +++ b/homebrew/boostat155/_metadata/description @@ -0,0 +1 @@ +Collection of portable C++ source libraries diff --git a/homebrew/boostat155/_metadata/homepage b/homebrew/boostat155/_metadata/homepage new file mode 100644 index 000000000..2ce47526f --- /dev/null +++ b/homebrew/boostat155/_metadata/homepage @@ -0,0 +1 @@ +https://www.boost.org diff --git a/homebrew/boostat155/_metadata/name b/homebrew/boostat155/_metadata/name new file mode 100644 index 000000000..88927d1a2 --- /dev/null +++ b/homebrew/boostat155/_metadata/name @@ -0,0 +1 @@ +BoostAT155 diff --git a/homebrew/boostat155/_metadata/version b/homebrew/boostat155/_metadata/version new file mode 100644 index 000000000..42a75bbef --- /dev/null +++ b/homebrew/boostat155/_metadata/version @@ -0,0 +1 @@ +1_55_0 diff --git a/homebrew/boostat155/download.sh b/homebrew/boostat155/download.sh new file mode 100755 index 000000000..09ec487d8 --- /dev/null +++ b/homebrew/boostat155/download.sh @@ -0,0 +1 @@ +wget https://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2
\ No newline at end of file diff --git a/homebrew/boostat155/patches.sh b/homebrew/boostat155/patches.sh new file mode 100755 index 000000000..8a9b15b61 --- /dev/null +++ b/homebrew/boostat155/patches.sh @@ -0,0 +1,3 @@ +wget https://github.com/boostorg/atomic/commit/6bb71fdd.diff?full_index=1 +wget https://github.com/boostorg/atomic/commit/e4bde20f.diff?full_index=1 +wget https://github.com/boostorg/chrono/commit/143260d.diff?full_index=1 |