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/libuv | |
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/libuv')
-rw-r--r-- | homebrew/libuv/.beer | 42 | ||||
-rw-r--r-- | homebrew/libuv/.make.sh-auto | 7 | ||||
-rw-r--r-- | homebrew/libuv/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/libuv/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/libuv/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/libuv/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/libuv/download.sh | 1 |
7 files changed, 54 insertions, 0 deletions
diff --git a/homebrew/libuv/.beer b/homebrew/libuv/.beer new file mode 100644 index 000000000..0a9a99904 --- /dev/null +++ b/homebrew/libuv/.beer @@ -0,0 +1,42 @@ +{ + "name": "Libuv", + "description": "Multi-platform support library with a focus on asynchronous I/O", + "url": "https://github.com/libuv/libuv/archive/v1.28.0.tar.gz", + "mirror": null, + "homepage": "https://github.com/libuv/libuv", + "depends": [ + { + "depend": "autoconf", + "build-depend": true + }, + { + "depend": "automake", + "build-depend": true + }, + { + "depend": "libtool", + "build-depend": true + }, + { + "depend": "pkg-config", + "build-depend": true + }, + { + "depend": "sphinx-doc", + "build-depend": true + } + ], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "cd \"docs\" do", + "inreplace \"src/sphinx-plugins/manpage.py\", \"app.info('Initializing manpage plugin')\", \"\"", + "system \"make\", \"man\"", + "system \"make\", \"singlehtml\"", + "man1.install \"build/man/libuv.1\"", + "doc.install Dir[\"build/singlehtml/*\"]" + ], + "version": "1.28.0", + "file": "libuv.rb" +}
\ No newline at end of file diff --git a/homebrew/libuv/.make.sh-auto b/homebrew/libuv/.make.sh-auto new file mode 100644 index 000000000..06e46e82e --- /dev/null +++ b/homebrew/libuv/.make.sh-auto @@ -0,0 +1,7 @@ +pkg:setup +cd "docs" +inreplace "src/sphinx-plugins/manpage.py", "app.info('Initializing manpage plugin')", "" +make man +make singlehtml +man1.install "build/man/libuv.1" +doc.install Dir["build/singlehtml/*"] diff --git a/homebrew/libuv/_metadata/description b/homebrew/libuv/_metadata/description new file mode 100644 index 000000000..ec6fcd4a5 --- /dev/null +++ b/homebrew/libuv/_metadata/description @@ -0,0 +1 @@ +Multi-platform support library with a focus on asynchronous I/O diff --git a/homebrew/libuv/_metadata/homepage b/homebrew/libuv/_metadata/homepage new file mode 100644 index 000000000..1bde5b211 --- /dev/null +++ b/homebrew/libuv/_metadata/homepage @@ -0,0 +1 @@ +https://github.com/libuv/libuv diff --git a/homebrew/libuv/_metadata/name b/homebrew/libuv/_metadata/name new file mode 100644 index 000000000..c891fdc48 --- /dev/null +++ b/homebrew/libuv/_metadata/name @@ -0,0 +1 @@ +Libuv diff --git a/homebrew/libuv/_metadata/version b/homebrew/libuv/_metadata/version new file mode 100644 index 000000000..cfc730712 --- /dev/null +++ b/homebrew/libuv/_metadata/version @@ -0,0 +1 @@ +1.28.0 diff --git a/homebrew/libuv/download.sh b/homebrew/libuv/download.sh new file mode 100755 index 000000000..1c01bb54d --- /dev/null +++ b/homebrew/libuv/download.sh @@ -0,0 +1 @@ +wget https://github.com/libuv/libuv/archive/v1.28.0.tar.gz
\ No newline at end of file |