diff options
author | wsnipex <wsnipex@a1.net> | 2022-01-22 09:25:35 +0100 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2022-02-07 06:24:58 +0100 |
commit | c70f7b16e27347df41f4ca1dfeb144a290d4dd26 (patch) | |
tree | aa53286c9631a4020b829010e9b706fbd3d35558 /tools/depends/target/libdvdcss | |
parent | 51de0c6ca714396b98df466698f870c3afd77e04 (diff) |
[depends] add tarball hash checking
Diffstat (limited to 'tools/depends/target/libdvdcss')
-rw-r--r-- | tools/depends/target/libdvdcss/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/depends/target/libdvdcss/Makefile b/tools/depends/target/libdvdcss/Makefile index 4ef9ec6b68..b157eee34d 100644 --- a/tools/depends/target/libdvdcss/Makefile +++ b/tools/depends/target/libdvdcss/Makefile @@ -1,6 +1,6 @@ -include ../../Makefile.include include LIBDVDCSS-VERSION -DEPS= LIBDVDCSS-VERSION Makefile +DEPS = LIBDVDCSS-VERSION Makefile ../../download-files.include ifeq ($(CROSS_COMPILING), yes) DEPS += ../../Makefile.include @@ -21,6 +21,7 @@ ARCHIVE_TOOL := tar --strip-components=1 -xf # configuration settings config = --prefix=$(PREFIX) --disable-shared --enable-static --with-pic +include ../../download-files.include all: .installed-$(PLATFORM) download: $(TARBALLS_LOCATION)/$(ARCHIVE) @@ -28,7 +29,7 @@ download: $(TARBALLS_LOCATION)/$(ARCHIVE) $(TARBALLS_LOCATION)/$(ARCHIVE): cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) -o $(TARBALLS_LOCATION)/$(ARCHIVE) $(BASE_URL)/archive/$(VERSION).tar.gz -$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) +$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) $(DEPS) rm -rf $(PLATFORM); mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); $(AUTORECONF) -vif && ac_cv_path_GIT= ./configure $(config) |