Fix lang-o (reversed -> reverted)
[cl-vectors.git] / cl-paths.asd
blob0cbc6a8d847e1d770aa828e3a35d8c1cabad4cc9
1 ;;;; -*- Lisp -*- mode
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.
15 (defpackage #:cl-paths-system
16   (:use #:cl #:asdf))
18 (in-package #:cl-paths-system)
20 (defsystem #:cl-paths
21   :description "cl-paths: vectorial paths manipulation"
22   :version "$VERSION$"
23   :author "Frederic Jolliton <frederic@jolliton.com>"
24   :licence "LLGPL (http://opensource.franz.com/preamble.html)"
25   :components ((:file "paths-package")
26                (:file "paths" :depends-on ("paths-package"))
27                (:file "paths-annotation" :depends-on ("paths-package" "paths"))))