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 | |
VERSION="3.6.1b1-8e652244-ac310b4b" | |
for KIT in VLCKit MobileVLCKit TVVLCKit; do | |
curl "https://download.videolan.org/pub/cocoapods/unstable/$KIT-$VERSION.tar.xz" | tar -xz | |
done |
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
$VERSION="20220613" | |
$SRC="$PWD\boringssl" | |
$DST="$PWD\boringssl.builds" | |
$PLATFORMS="win32", "x64" | |
Write-Output "Checking out boringssl..." | |
git clone https://boringssl.googlesource.com/boringssl --depth 1 --branch fips-$VERSION | |
Write-Output "Patching boringssl..." |
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 | |
# shellcheck disable=2016,2046,SC2086 | |
SRC=$(pwd)/libuv | |
DST=$(pwd)/libuv.builds | |
PLATFORMS="macosx iphoneos iphonesimulator appletvos appletvsimulator xros xrsimulator" | |
set -e | |
echo "Checking out libuv..." |
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 | |
# shellcheck disable=SC2016,SC2046,SC2086 | |
VERSION="3.6.0" | |
SRC=$(pwd)/mbedtls | |
DST=$(pwd)/mbedtls.builds | |
PLATFORMS="macosx iphoneos iphonesimulator appletvos appletvsimulator xros xrsimulator" | |
set -e |
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 | |
# shellcheck disable=SC2044,SC2046,SC2086,SC3009 | |
SRC=$(pwd)/fping-5.1 | |
DST=$(pwd)/fping.builds | |
XCODE_DIR=$(xcode-select -p) | |
echo "Downloading fping..." | |
curl -s -L https://github.com/schweikert/fping/releases/download/v5.1/fping-5.1.tar.gz | tar xz |
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; | |
ipv4Regex="((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])" | |
ttl=60 | |
proxy="false" | |
# DSM Config | |
username="$1" |
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 | |
# shellcheck disable=2016,2046,SC2086 | |
VERSION="20220613" | |
SRC=$(pwd)/boringssl | |
DST=$(pwd)/boringssl.builds | |
PLATFORMS="macosx iphoneos iphonesimulator appletvos appletvsimulator xros xrsimulator" | |
set -e |
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 | |
# shellcheck disable=2016,2043,2044,2046,2086 | |
VERSION="4.33" | |
SRC=$(pwd)/libev | |
DST=$(pwd)/libev.builds | |
PLATFORMS="macosx iphoneos iphonesimulator appletvos appletvsimulator xros xrsimulator" | |
set -e |
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 | |
export SRC="$(pwd)/iperf" | |
export DST="$(pwd)/iperf.builds" | |
export XCODE_DIR="$(xcode-select -p)" | |
echo "Checking out iperf..." | |
git clone https://github.com/esnet/iperf.git --depth 1 --branch 3.13 | |
echo "Building for macOS..." |
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
#! /usr/bin/env python | |
# Client and server for udp (datagram) echo. | |
# | |
# Usage: udpecho -s [port] (to start a server) | |
# or: udpecho -c host [port] <file (client) | |
import sys | |
from socket import * |
NewerOlder