mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
e791329df1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
18 lines
340 B
Bash
18 lines
340 B
Bash
#!/bin/sh
|
|
|
|
####
|
|
# This file must stay /bin/sh and POSIX compliant for BSD portability.
|
|
# Copy-paste the entire script into http://shellcheck.net to check.
|
|
####
|
|
|
|
# Die on any error for Travis CI to automatically retry:
|
|
set -e
|
|
|
|
download_dir="${0%/*}/download"
|
|
|
|
mkdir -p "${download_dir}"
|
|
cd "${download_dir}"
|
|
cd ..
|
|
|
|
tar -xvf download.tar.gz
|
|
|