mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00

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.
11 lines
202 B
Bash
11 lines
202 B
Bash
. 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
|