This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# 2020-05-06 - paulwratt@github | |
# ( 'jq' is a command line json tool ) | |
# ( https://stedolan.github.io/jq/tutorial/ ) | |
# https://gist.github.com/paulwratt/c8199d1e2162a82d475d7777a67d6f13 | |
# | |
if [ "$1" = "" -o "$1" = "--help" ]; then | |
echo "List raw urls of gist.github files (uses: curl grep jq sed)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# install Vincint Riviera Ubuntu PPA repo v1.0.0-20200506 | |
# then install all ARM packages in right order (APT/DPKG) | |
# https://gist.github.com/paulwratt/98de1ce795b5b355c300e73bdb13af37 | |
# | |
# this script is based on the original source build script: | |
# https://gist.github.com/paulwratt/b401937124906803628cb3a34d3d36f1 | |
# | |
# you can download the latest versions from command line using this: | |
# https://gist.github.com/paulwratt/c8199d1e2162a82d475d7777a67d6f13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# install Vincint Riviera Ubuntu PPA repo v1.0.0-20210206 | |
# build from source all packages in right order (DPKG) | |
# https://gist.github.com/paulwratt/b401937124906803628cb3a34d3d36f1 | |
# | |
# ARM install only script (works with i386 & amd64 as well): | |
# https://gist.github.com/paulwratt/98de1ce795b5b355c300e73bdb13af37 | |
# | |
# you can download the latest versions from command line using this: | |
# https://gist.github.com/paulwratt/c8199d1e2162a82d475d7777a67d6f13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
PATH="$(pwd)/tinycc/temp:$(pwd)/tinycc/build/bin:$(pwd)/google-ndk:$(pwd)/google-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin:${PATH}" | |
if [[ -d tinycc ]]; then | |
rm -rf tinycc | |
fi |