diff options
author | Rich Wareham <rjw57@cam.ac.uk> | 2014-02-24 10:03:11 +0000 |
---|---|---|
committer | Rich Wareham <rjw57@cam.ac.uk> | 2014-02-24 10:09:07 +0000 |
commit | d047b28ac140b082ef31b9ee7769da505bfd509d (patch) | |
tree | 8061c2eaa7ca7c442e898768fd8d1fc594fe64c0 /scripts/compile-libuv.sh | |
parent | f78d5aa87b8f58a19364c93aed313214054e72af (diff) | |
download | rneovim-d047b28ac140b082ef31b9ee7769da505bfd509d.tar.gz rneovim-d047b28ac140b082ef31b9ee7769da505bfd509d.tar.bz2 rneovim-d047b28ac140b082ef31b9ee7769da505bfd509d.zip |
get-libuv.sh: compile bundled libuv
Rename file to reflect new intent of script. Libuv is bundled into the
third-party directory. Modify the script to compile but not fetch libuv.
Diffstat (limited to 'scripts/compile-libuv.sh')
-rw-r--r-- | scripts/compile-libuv.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/compile-libuv.sh b/scripts/compile-libuv.sh new file mode 100644 index 0000000000..f07120ed56 --- /dev/null +++ b/scripts/compile-libuv.sh @@ -0,0 +1,10 @@ +. scripts/common.sh + +uv_dir="third-party/libuv" + +cd "$uv_dir" +sh autogen.sh +./configure --prefix="$prefix" +make +make install +rm "$prefix/lib/"libuv*.{so,dylib} "$prefix/lib/"libuv*.{so,dylib}.* || true |