[vlc-commits] [Git][videolan/vlc][master] 2 commits: contrib: aom: use a proper release tarball

Hugo Beauzée-Luyssen (@chouquette) gitlab at videolan.org
Mon Oct 11 08:50:50 UTC 2021



Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC


Commits:
e46c6eeb by Marvin Scholz at 2021-10-11T07:43:15+00:00
contrib: aom: use a proper release tarball

Using a proper release tarball means it does not change each
time, as contrary to the other one from their Git tool, this
one is not regenerated sometimes.

- - - - -
511767ea by Marvin Scholz at 2021-10-11T07:43:15+00:00
contrib: aom: remove unknown options

These options are not known anymore with the libaom version used.

- - - - -


2 changed files:

- + contrib/src/aom/SHA512SUMS
- contrib/src/aom/rules.mak


Changes:

=====================================
contrib/src/aom/SHA512SUMS
=====================================
@@ -0,0 +1 @@
+80db4807a1551c50b55189c42e07495fe801faf4b42a197cfb922a6bebf2f72a01d974f4b3fb07f1d718278804618cf4aebca8719526b2c501e65f18e9d1038d  libaom-3.1.3.tar.gz


=====================================
contrib/src/aom/rules.mak
=====================================
@@ -1,20 +1,18 @@
 # aom
-AOM_VERSION := v3.1.3
-AOM_GITURL := https://aomedia.googlesource.com/aom/+archive/$(AOM_VERSION).tar.gz
+AOM_VERSION := 3.1.3
+AOM_URL := https://storage.googleapis.com/aom-releases/libaom-$(AOM_VERSION).tar.gz
 
 PKGS += aom
 ifeq ($(call need_pkg,"aom"),)
 PKGS_FOUND += aom
 endif
 
-$(TARBALLS)/aom-$(AOM_VERSION).tar.gz:
-	$(call download_pkg,$(AOM_GITURL),aom)
+$(TARBALLS)/libaom-$(AOM_VERSION).tar.gz:
+	$(call download_pkg,$(AOM_URL),aom)
 
-.sum-aom: aom-$(AOM_VERSION).tar.gz
-	$(warning $@ not implemented)
-	touch $@
+.sum-aom: libaom-$(AOM_VERSION).tar.gz
 
-aom: aom-$(AOM_VERSION).tar.gz .sum-aom
+aom: libaom-$(AOM_VERSION).tar.gz .sum-aom
 	rm -Rf $(UNPACK_DIR) $@
 	mkdir -p $(UNPACK_DIR)
 	tar xvzfo "$<" -C $(UNPACK_DIR)
@@ -40,11 +38,7 @@ AOM_CONF := \
 	-DENABLE_DOCS=OFF \
 	-DENABLE_EXAMPLES=OFF \
 	-DENABLE_TOOLS=OFF \
-	-DCONFIG_UNIT_TESTS=0 \
-	-DENABLE_TESTS=OFF \
-	-DCONFIG_INSTALL_BINS=0 \
-	-DCONFIG_INSTALL_DOCS=0 \
-	-DCONFIG_DEPENDENCY_TRACKING=0
+	-DENABLE_TESTS=OFF
 
 ifndef BUILD_ENCODERS
 AOM_CONF += -DCONFIG_AV1_ENCODER=0



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/cb5fee6ca36fe8302d937cc90033834aa3d5d933...511767eaf8ed0c33153c7c0d35e4465dc5cdfd27

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/cb5fee6ca36fe8302d937cc90033834aa3d5d933...511767eaf8ed0c33153c7c0d35e4465dc5cdfd27
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list