mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 22:22:26 +00:00
27 lines
551 B
Bash
27 lines
551 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [ "$TRAVIS_OS_NAME" != linux ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
sudo apt-get update
|
||
|
|
||
|
# needed to build deb packages
|
||
|
sudo apt-get install -y fakeroot
|
||
|
|
||
|
# needed for i686 linux gnu target
|
||
|
if [[ $TARGET == i686-unknown-linux-gnu ]]; then
|
||
|
sudo apt-get install -y gcc-multilib
|
||
|
fi
|
||
|
|
||
|
# needed for cross-compiling for arm
|
||
|
if [[ $TARGET == arm-unknown-linux-* ]]; then
|
||
|
sudo apt-get install -y \
|
||
|
gcc-4.8-arm-linux-gnueabihf \
|
||
|
binutils-arm-linux-gnueabihf \
|
||
|
libc6-armhf-cross \
|
||
|
libc6-dev-armhf-cross
|
||
|
fi
|