forked from nxtedition/node-libcurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-cares.sh
executable file
·45 lines (35 loc) · 1.04 KB
/
build-cares.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
# <release> <dest_folder>
set -euo pipefail
build_folder=$2/build/$1
curr_dirname=$(dirname "$0")
mkdir -p $build_folder
mkdir -p $2/source
FORCE_REBUILD=${FORCE_REBUILD:-}
version_with_dashes=$(echo $1 | sed 's/\./_/g')
# @TODO We are explicitly checking the static lib
if [[ -f $build_folder/lib/libcares.a ]] && [[ -z $FORCE_REBUILD || $FORCE_REBUILD != "true" ]]; then
echo "Skipping rebuild of cares because lib file already exists"
exit 0
fi
if [ ! -d $2/source/$1 ]; then
echo "https://github.com/c-ares/c-ares/releases/download/cares-$version_with_dashes/c-ares-$1.tar.gz"
$curr_dirname/download-and-unpack.sh https://github.com/c-ares/c-ares/releases/download/cares-$version_with_dashes/c-ares-$1.tar.gz $2
mv $2/c-ares-$1 $2/source/$1
cd $2/source/$1
./buildconf
else
cd $2/source/$1
ls -al
if [ -f ./configure ]; then
make distclean || true;
else
./buildconf
fi
fi
# Release - Static
./configure \
--prefix=$build_folder \
--disable-shared \
--disable-dependency-tracking
make && make install