Loading build.lisp→scripts/clpm-build100644 → 100755 +8 −2 Original line number Original line Diff line number Diff line ;;;; CLPM Build Helper #!/bin/sh ":" ; exec sbcl --script "$0" "$@" # -*- mode: common-lisp; -*- ;;;; Script to easily build CLPM. ;;;; ;;;; This software is part of CLPM. See README.org for more information. See ;;;; LICENSE for license information. (require :asdf) (require :asdf) Loading @@ -12,7 +17,8 @@ (defvar *setup-file-pathname* *load-truename* (defvar *setup-file-pathname* *load-truename* "The pathname to this file.") "The pathname to this file.") (defvar *root-pathname* (uiop:pathname-directory-pathname *setup-file-pathname*) (defvar *root-pathname* (uiop:pathname-parent-directory-pathname (uiop:pathname-directory-pathname *setup-file-pathname*)) "The pathname to the root directory of the CLPM release being built.") "The pathname to the root directory of the CLPM release being built.") (defvar *build-root-pathname* (merge-pathnames "build/" (defvar *build-root-pathname* (merge-pathnames "build/" Loading Loading
build.lisp→scripts/clpm-build100644 → 100755 +8 −2 Original line number Original line Diff line number Diff line ;;;; CLPM Build Helper #!/bin/sh ":" ; exec sbcl --script "$0" "$@" # -*- mode: common-lisp; -*- ;;;; Script to easily build CLPM. ;;;; ;;;; This software is part of CLPM. See README.org for more information. See ;;;; LICENSE for license information. (require :asdf) (require :asdf) Loading @@ -12,7 +17,8 @@ (defvar *setup-file-pathname* *load-truename* (defvar *setup-file-pathname* *load-truename* "The pathname to this file.") "The pathname to this file.") (defvar *root-pathname* (uiop:pathname-directory-pathname *setup-file-pathname*) (defvar *root-pathname* (uiop:pathname-parent-directory-pathname (uiop:pathname-directory-pathname *setup-file-pathname*)) "The pathname to the root directory of the CLPM release being built.") "The pathname to the root directory of the CLPM release being built.") (defvar *build-root-pathname* (merge-pathnames "build/" (defvar *build-root-pathname* (merge-pathnames "build/" Loading