changeset 5196:3432d3765d62

* src/suitesparse.mk: use github for update info
author John Donoghue
date Thu, 24 Oct 2019 09:01:44 -0400
parents a3f7eb4de20a
children ef15e1ae1473
files src/suitesparse.mk
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/suitesparse.mk	Wed Oct 23 16:39:02 2019 -0400
+++ b/src/suitesparse.mk	Thu Oct 24 09:01:44 2019 -0400
@@ -17,9 +17,9 @@
 endif
 
 define $(PKG)_UPDATE
-    $(WGET) -q -O- 'http://faculty.cse.tamu.edu/davis/suitesparse.html' | \
-    $(SED) -n 's,.*SuiteSparse-\([0-9][^"]*\)\.tar.*,\1,p' | \
-    head -1
+    $(WGET) -q -O- 'https://github.com/DrTimothyAldenDavis/SuiteSparse/tags' | \
+    $(SED) -n 's|.*releases/tag/v\([^"]*\).*|\1|p' | $(SORT) -V | \
+    tail -1
 endef