pkg(pure-0.68): Goodbye v flag from tar.

This commit is contained in:
Shivansh-007 2021-03-20 06:53:03 +05:30 committed by GitHub
parent fa0b2178ae
commit 276277e7b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,8 +5,8 @@ PREFIX=$(realpath $(dirname $0))
# Installing LLVM and clang (the latter is optional but recommended) # Installing LLVM and clang (the latter is optional but recommended)
curl -OL "http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz" curl -OL "http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz"
curl -OL "http://llvm.org/releases/3.4/clang-3.4.src.tar.gz" curl -OL "http://llvm.org/releases/3.4/clang-3.4.src.tar.gz"
tar xfvz llvm-3.4.src.tar.gz tar xfz llvm-3.4.src.tar.gz
tar xfvz clang-3.4.src.tar.gz tar xfz clang-3.4.src.tar.gz
mv clang-3.4 llvm-3.4/tools/clang mv clang-3.4 llvm-3.4/tools/clang
# Cleaning up gzip files. # Cleaning up gzip files.
@ -20,7 +20,7 @@ make install -j$(nproc)
# Installing Pure # Installing Pure
curl -sSLO "https://github.com/agraef/pure-lang/releases/download/pure-0.68/pure-0.68.tar.gz" curl -sSLO "https://github.com/agraef/pure-lang/releases/download/pure-0.68/pure-0.68.tar.gz"
tar xfvz pure-0.68.tar.gz tar xfz pure-0.68.tar.gz
rm pure-0.68.tar.gz rm pure-0.68.tar.gz
cd pure-0.68 cd pure-0.68