You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/04/14 14:21:15 UTC

[incubator-nuttx-apps] branch master updated: graphics/littlevgl: Change lvgl tarball download source to GitHub

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c151df  graphics/littlevgl: Change lvgl tarball download source to GitHub
4c151df is described below

commit 4c151dfef679634f12dd74bbb90fca46c21ed6b9
Author: Qi Huang <hu...@xiaomi.com>
AuthorDate: Tue Apr 14 11:52:14 2020 +0000

    graphics/littlevgl: Change lvgl tarball download source to GitHub
    
    Signed-off-by: Qi Huang <hu...@xiaomi.com>
---
 graphics/littlevgl/Makefile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/graphics/littlevgl/Makefile b/graphics/littlevgl/Makefile
index 5b0ffb6..0ec3abc 100644
--- a/graphics/littlevgl/Makefile
+++ b/graphics/littlevgl/Makefile
@@ -53,10 +53,10 @@ LVGL_DIR = .
 
 WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
 
-CONFIG_GRAPH_LVGL_URL ?= "https://web.archive.org/web/20190204022948/https://littlevgl.com/download/"
+CONFIG_GRAPH_LVGL_URL ?= "https://github.com/littlevgl/lvgl/archive"
 
-LVGL_VERSION ?= v5_3
-LVGL_TARBALL = lvgl_$(LVGL_VERSION).zip
+LVGL_VERSION ?= 5.3
+LVGL_TARBALL = v$(LVGL_VERSION).zip
 WGET ?= wget
 
 LVGL_UNPACKNAME = lvgl
@@ -76,6 +76,7 @@ $(LVGL_TARBALL):
 $(LVGL_UNPACKNAME): $(LVGL_TARBALL)
 	@echo "Unpacking: $(LVGL_TARBALL) -> $(LVGL_UNPACKNAME)"
 	$(Q) $(UNPACK) $(LVGL_TARBALL)
+	$(Q) mv	lvgl-$(LVGL_VERSION) $(LVGL_UNPACKNAME)
 	$(Q) touch $(LVGL_UNPACKNAME)
 
 $(LVGL_UNPACKNAME)/.patched: $(LVGL_UNPACKNAME) $(PATCH_FILES)