From de07e23d506452837023fdd31964866cffe96ef1 Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Thu, 10 Jul 2008 18:17:43 -0600 Subject: [PATCH] expand binary paths --- downloads.lisp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/downloads.lisp b/downloads.lisp index bac84bb..e7b5897 100644 --- a/downloads.lisp +++ b/downloads.lisp @@ -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)))))))) -- 2.34.1