Resolve OPFlex ShellCheck issues
[releng/builder.git] / jjb / opflex / scripts / libuv-build.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> scripts/libuv-build.sh"
12
13 set -e
14 set -x
15
16 ./autogen.sh
17 ROOT=/tmp/opflex-prefix
18 ./configure --prefix=$ROOT
19 mkdir install-root
20 DESTDIR=$(pwd)/install-root make clean install
21 pushd install-root
22 tar -cvzf -- "libuv-$LIBUV_VERSION.tar.gz" *
23 # Move tarball to dir of files that will be uploaded to Nexus
24 UPLOAD_FILES_PATH="$WORKSPACE/upload_files"
25 mkdir -p "$UPLOAD_FILES_PATH"
26 mv -- *.tar.gz "$_"
27 popd