2ed65604e8b9bc11cad4fb7f9ab15efdf37f3573
[releng/builder.git] / jjb / opflex / scripts / rapidjson-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/rapidjson-build.sh"
12
13 # Build script for rapidjson
14
15 set -e
16 set -x
17
18 ROOT=/tmp/opflex-prefix
19 DESTDIR=install-root
20
21 mkdir -p "$DESTDIR/$ROOT/lib/pkgconfig"
22 mkdir -p "$DESTDIR/$ROOT/include"
23
24 cp -R include/rapidjson "$DESTDIR/$ROOT/include"
25 sed -e "s|@INCLUDE_INSTALL_DIR@|$ROOT/include|" \
26     -e "s|@PROJECT_NAME@|RapidJSON|" \
27     -e "s|@LIB_VERSION_STRING@|1.0.2|" RapidJSON.pc.in > \
28     "$DESTDIR/$ROOT/lib/pkgconfig/RapidJSON.pc"
29
30 pushd $DESTDIR
31 tar -cvzf "rapidjson-$RAPIDJSON_VERSION.tar.gz" *
32 # Move tarball to dir of files that will be uploaded to Nexus
33 UPLOAD_FILES_PATH="$WORKSPACE/upload_files"
34 mkdir -p "$UPLOAD_FILES_PATH"
35 mv *.tar.gz "$_"
36 popd