|
Revision 2190, 1.0 kB
(checked in by hhubner, 1 year ago)
|
add more thirdparty libs
|
| Line | |
|---|
| 1 |
;;;; -*- Lisp -*- mode |
|---|
| 2 |
|
|---|
| 3 |
;;;; cl-vectors -- Rasterizer and paths manipulation library |
|---|
| 4 |
;;;; Copyright (C) 2007 Frédéric Jolliton <frederic@jolliton.com> |
|---|
| 5 |
;;;; |
|---|
| 6 |
;;;; This library is free software; you can redistribute it and/or |
|---|
| 7 |
;;;; modify it under the terms of the Lisp Lesser GNU Public License |
|---|
| 8 |
;;;; (http://opensource.franz.com/preamble.html), known as the LLGPL. |
|---|
| 9 |
;;;; |
|---|
| 10 |
;;;; This library is distributed in the hope that it will be useful, but |
|---|
| 11 |
;;;; WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 |
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Lisp |
|---|
| 13 |
;;;; Lesser GNU Public License for more details. |
|---|
| 14 |
|
|---|
| 15 |
(defpackage #:cl-vectors-system |
|---|
| 16 |
(:use #:cl #:asdf)) |
|---|
| 17 |
|
|---|
| 18 |
(in-package #:cl-vectors-system) |
|---|
| 19 |
|
|---|
| 20 |
(defsystem #:cl-vectors |
|---|
| 21 |
:description "cl-paths: vectorial paths manipulation" |
|---|
| 22 |
:version "0.1.3" |
|---|
| 23 |
:author "Frederic Jolliton <frederic@jolliton.com>" |
|---|
| 24 |
:license "LLGPL (http://opensource.franz.com/preamble.html)" |
|---|
| 25 |
:depends-on ("cl-aa" "cl-paths") |
|---|
| 26 |
:components ((:file "vectors"))) |
|---|