File: install

package info (click to toggle)
libcork 1.0.0~rc3-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,032 kB
  • sloc: ansic: 12,975; python: 605; makefile: 331; sh: 238
file content (11 lines) | stat: -rwxr-xr-x 260 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$OS_NAME" = "ubuntu-latest" ]; then
    sudo dpkg --add-architecture i386
    sudo apt-get update
    sudo apt-get install -y check check:i386 gcc-multilib valgrind
elif [ "$OS_NAME" = osx ]; then
    brew install --universal check
fi