|
|
|
@ -2,14 +2,18 @@ |
|
|
|
|
|
|
|
|
|
# Exports SOURCES_DIR_libaom - path where actual sources are stored |
|
|
|
|
|
|
|
|
|
AOM_VERSION=v1.0.0-errata1 |
|
|
|
|
# This 2 variables have to be changed at once. |
|
|
|
|
# The first one is produced by 'git describe' command while being in the commit represented by the second one. |
|
|
|
|
AOM_VERSION=v1.0.0-2780-ge1ec46ae2 |
|
|
|
|
AOM_HASH=e1ec46ae24bb406057c3c256e69cd359b342a8d3 |
|
|
|
|
|
|
|
|
|
echo "Using libaom $AOM_VERSION" |
|
|
|
|
AOM_SOURCES=libaom-${AOM_VERSION} |
|
|
|
|
|
|
|
|
|
if [[ ! -d "$AOM_SOURCES" ]]; then |
|
|
|
|
TARGET_FILE_NAME=${AOM_VERSION}.tar.gz |
|
|
|
|
|
|
|
|
|
curl https://aomedia.googlesource.com/aom/+archive/${TARGET_FILE_NAME} --output ${TARGET_FILE_NAME} |
|
|
|
|
curl https://aomedia.googlesource.com/aom/+archive/${AOM_HASH}.tar.gz --output ${TARGET_FILE_NAME} |
|
|
|
|
mkdir $AOM_SOURCES |
|
|
|
|
tar xf ${TARGET_FILE_NAME} -C $AOM_SOURCES |
|
|
|
|
rm ${TARGET_FILE_NAME} |
|
|
|
|