Sha256: 9878b447e7a5e404a3cdcbd2dd1288c3e2d29031ec9ac10a7054fe9564d2f6b7

Contents?: true

Size: 560 Bytes

Versions: 12

Compression:

Stored size: 560 Bytes

Contents

#!/bin/bash

set -e

echo "==> Installing required libraries…"

if [ "$(uname)" == "Darwin" ]; then
  for pkg in flex bison cmake valgrind; do
    if brew list -1 | grep -q "^${pkg}\$"; then
        echo "Package '$pkg' is installed"
    else
        echo "Package '$pkg' is not installed"
        brew install $pkg
    fi
  done
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
  if [ -z "$TRAVIS" ]; then
    sudo apt-get -qq -y install flex bison cmake valgrind
  else
    echo "Packages already installed on Travis CI."
  fi
fi

mkdir -p build

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
mathematical-1.6.11 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.10 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.9 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.8 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.7 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.6 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.5 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.4 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.3 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.2 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.1 ext/mathematical/mtex2MML/script/bootstrap
mathematical-1.6.0 ext/mathematical/mtex2MML/script/bootstrap