You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source ${SCRIPTS_DIR}/common-functions.sh
|
|
|
|
|
|
|
|
# Libx264 doesn't have any versioning system. Currently it has 2 branches: master and stable.
|
|
|
|
# Latest commit in stable branch
|
|
|
|
# Thu Jan 21 16:41:42 2021 +0300
|
|
|
|
LIBX264_VERSION=544c61f082194728d0391fb280a6e138ba320a96
|
|
|
|
|
|
|
|
downloadTarArchive \
|
|
|
|
"libx264" \
|
|
|
|
"https://code.videolan.org/videolan/x264/-/archive/${LIBX264_VERSION}/x264-${LIBX264_VERSION}.tar.gz"
|