From 34beb8319f658277c39403ec9b8d58e79b472c97 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Tue, 21 Jun 2022 06:47:12 -0500 Subject: [add] license and package definition --- package.lisp | 8 +++++++- wheelwork.asd | 14 ++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/package.lisp b/package.lisp index f94e1c2..5a59057 100644 --- a/package.lisp +++ b/package.lisp @@ -1,4 +1,10 @@ ;;;; package.lisp (defpackage #:wheelwork - (:use #:cl)) + (:use #:cl) + (:nicknames #:ww) + (:local-nicknames (#:mat #:3d-matrices) + (#:vec #:3d-vectors)) + (:import-from #:defclass-std #:defclass/std) + (:import-from #:alexandria + #:when-let #:when-let* #:if-let)) diff --git a/wheelwork.asd b/wheelwork.asd index 7ee07f0..e9f5629 100644 --- a/wheelwork.asd +++ b/wheelwork.asd @@ -1,11 +1,17 @@ ;;;; wheelwork.asd (asdf:defsystem #:wheelwork - :description "Describe wheelwork here" - :author "Your Name " - :license "Specify license here" + :description "A sprite system for games and GUIs" + :author "colin " + :license "Artistic-2.0" :version "0.0.1" :serial t - :depends-on (#:cl-opengl #:sdl2 #:varjo #:defclass-std #:3d-vectors #:3d-matrices) + :depends-on (#:cl-opengl + #:sdl2 + #:varjo + #:defclass-std + #:3d-vectors + #:3d-matrices + #:hyperquirks) :components ((:file "package") (:file "wheelwork"))) -- cgit v1.2.3