mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
try fix uri for allegro 10.1.
This commit is contained in:
parent
e794c63f53
commit
d264e4ea3f
|
|
@ -15,13 +15,14 @@
|
|||
(machine (intern uname-m :keyword)))
|
||||
(cond ((find version '("10.1express" "100express") :test 'equal)
|
||||
(format nil "~@{~A~}"
|
||||
(allegro-uri) "ftp/pub/acl" version "/"
|
||||
(allegro-uri) "pub/acl" version "/"
|
||||
(case os (:|darwin| "macosx") (t os))
|
||||
(if (eql os :|windows|) ""
|
||||
(case machine (:|x86| 86) (:|x86-64| 86)))
|
||||
"/acl" version
|
||||
(case os (:|linux| "-linux") (:|darwin| "-macosx") (:|windows| "") (t os))
|
||||
"-" (case machine (:|x86-64| "x86") (t machine))
|
||||
"-" (if (eql os :|darwin|) "x64"
|
||||
(case machine (:|x86-64| "x86") (t machine)))
|
||||
(case os
|
||||
(:|linux| (cond ((equal "10.1express" version) ".tbz2")
|
||||
((equal "100express" version) ".bz2")))
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
(defuri clisp-version-uri "http://ftp.gnu.org/pub/gnu/clisp/release/")
|
||||
(defuri 7za-uri "http://sourceforge.net/projects/sevenzip/files/7-Zip/9.20/7za920.zip/download#")
|
||||
(defuri allegro-uri "http://www.franz.com/")
|
||||
(defuri allegro-uri "ftp://ftp.franz.com/")
|
||||
(defuri abcl-bin-uri "https://common-lisp.net/project/armedbear/releases/")
|
||||
(defuri ccl-bin-uri "https://github.com/roswell/ccl_bin/releases/download/")
|
||||
(defuri clasp-bin-uri "https://github.com/roswell/clasp_bin/releases/download/")
|
||||
|
|
|
|||
Loading…
Reference in a new issue