X-Git-Url: http://git.kpe.io/?p=lml2.git;a=blobdiff_plain;f=downloads.lisp;h=e7b58975f5ab22558c641dc4de2c43e93479174a;hp=99445ef39ae9c305da39a7c78d3267911b516095;hb=de07e23d506452837023fdd31964866cffe96ef1;hpb=3f79f112db5657614a19231437f75126ef7f01f3 diff --git a/downloads.lisp b/downloads.lisp index 99445ef..e7b5897 100644 --- a/downloads.lisp +++ b/downloads.lisp @@ -133,9 +133,9 @@ (dolist (sect sects) (display-sections sect dl-data)) (when giturl - (if gitweb - (lml-format "

Git Repository

~A" gitweb giturl) - (lml-format "

Git Repository

~A" giturl))) + (lml-format "

Git Repository

~A" giturl) + (when gitweb + (lml-format "  [Browse]" gitweb))) (display-footer dl-data))) (defun std-dl-page (pkg-name pkg-base dl-base dl-url &optional giturl gitweb) @@ -165,6 +165,14 @@ (w32-path (merge-pathnames (make-pathname :directory '(:relative "win32") :type :wild :name :wild) + base)) + (mac-path (merge-pathnames + (make-pathname :directory '(:relative "mac") + :type :wild :name :wild) + base)) + (linux-path (merge-pathnames + (make-pathname :directory '(:relative "linux") + :type :wild :name :wild) base))) (display-page pkg-name pkg-base dl-base dl-url giturl gitweb `(("Manual" ,doc-path) @@ -172,7 +180,8 @@ (("Unix (.tar.gz)" ,tgz-path) ("Windows (.zip)" ,zip-path))) ("Binaries" - (("Linux Binaries" - (("Debian Linux" ,deb-path) - ("RedHat Linux" ,rpm-path))) + (("Linux Binaries" ,linux-path) + ("Linux .deb Packages" ,deb-path) + ("Linux .rpm Packages" ,rpm-path) + ("Mac Binaries" ,mac-path) ("Windows Binaries" ,w32-path))))))))