Skip to content

Instantly share code, notes, and snippets.

View 29821632's full-sized avatar
💭
¯\_(ツ)_/¯

ʙʙʀᴀᴅʟᴇy 29821632

💭
¯\_(ツ)_/¯
View GitHub Profile
# https://github.com/curl/curl/blob/master/docs/HTTP3.md#quiche-version
FROM ubuntu
RUN apt-get update && apt install build-essential git cmake golang cargo autoconf libtool automake
RUN cd /usr/local/src && git clone --recursive https://github.com/cloudflare/quiche && \
cd quiche/deps/boringssl && mkdir build && cd build && \
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=on .. && make
RUN cd .. && mkdir -p .openssl/lib && \
@29821632
29821632 / ffmpeg_build_el.sh
Created November 2, 2016 14:36
Updated ffmpeg build script for EL-based distros
#!/bin/bash
# source: https://trac.ffmpeg.org/wiki/CentosCompilationGuide
FFBUILDROOT='/usr/local/src/ffmpeg_build'
FFSOURCEROOT='/usr/local/src/ffmpeg_sources'
BINDIR='/usr/local/bin'
yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel
mkdir "$FFSOURCEROOT"