File: osx-install-dependencies

package info (click to toggle)
dspdfviewer 1.15.1%2Bgit20230427.d432d8d-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 924 kB
  • sloc: cpp: 2,303; makefile: 22; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Exit in case of an error, and show the steps
set -ex

# Travis recommends to run homebrew update
brew update > /dev/null
if [ "$QT_VERSION" -eq 5 ] ; then
	brew install poppler --with-qt5
else
	brew install poppler --with-qt
fi