aboutsummaryrefslogtreecommitdiff
path: root/scripts/get-libuv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/get-libuv.sh')
-rw-r--r--scripts/get-libuv.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/get-libuv.sh b/scripts/get-libuv.sh
deleted file mode 100644
index 9f3eceb218..0000000000
--- a/scripts/get-libuv.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-. scripts/common.sh
-
-uv_repo=joyent/libuv
-uv_ver=v0.11.19
-uv_dir="$deps/uv-$uv_ver"
-uv_sha1=5539d8e99e22b438cf4a412d4cec70ac6bb519fc
-
-rm -rf "$uv_dir"
-
-github_download "$uv_repo" "$uv_ver" "$uv_dir" "$uv_sha1"
-cd "$uv_dir"
-sh autogen.sh
-./configure --prefix="$prefix"
-make
-make install
-rm "$prefix/lib/"libuv*.{so,dylib} "$prefix/lib/"libuv*.{so,dylib}.* || true