void-packages/common/travis/fetch-xtools.sh
2019-12-25 15:30:03 +01:00

11 lines
274 B
Bash
Executable file

#!/bin/sh
#
# fetch-xtools.sh
mkdir -p /tmp/bin
/bin/echo -e '\x1b[32mInstalling xtools...\x1b[0m'
wget -q -O - https://github.com/leahneukirchen/xtools/archive/master.tar.gz | \
gunzip | tar x -C /tmp/bin --wildcards "xtools-master/x*" \
--strip-components=1 || exit 1