cmake/Utilities/Scripts/update-libuv.bash

29 lines
554 B
Bash
Raw Normal View History

2016-10-30 18:24:19 +01:00
#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="libuv"
readonly ownership="libuv upstream <libuv@googlegroups.com>"
readonly subtree="Utilities/cmlibuv"
readonly repo="https://github.com/libuv/libuv.git"
readonly tag="v1.x"
readonly shortlog=false
readonly paths="
LICENSE
include
src
"
extract_source () {
git_archive
pushd "${extractdir}/${name}-reduced"
echo "* -whitespace" > .gitattributes
2018-04-23 21:13:27 +02:00
echo >> src/unix/aix-common.c
echo >> src/unix/ibmi.c
2016-10-30 18:24:19 +01:00
popd
}
. "${BASH_SOURCE%/*}/update-third-party.bash"