blob: 6229602cc15ee79e7de8fd7a6bd6c810b1745c8a [file] [log] [blame]
#!/usr/bin/env bash
# Copyright 2024 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -exo pipefail
if [ -z "$2" ]; then
echo -e "Usage: libplist.sh \$SRC_DIR \$INSTALL_DIR \$OUTPUT_DIR " 1>&2
exit 1
fi
set -u
SRC_DIR="$1"
INSTALL_DIR="$2"
curl http://mirror.us-midwest-1.nexcess.net/gnu/bison/bison-3.8.tar.gz --output "$SRC_DIR"/bison-3.8.tar.gz
tar -xzvf "$SRC_DIR"/bison-3.8.tar.gz -C "$SRC_DIR"
cd "$SRC_DIR"/bison-3.8
"$SRC_DIR"/bison-3.8/configure --prefix="$INSTALL_DIR"
make install