More V4L2_PIX_FMT formats
[cl-v4l2.git] / cl-v4l2.asd
blobefbd83ac5a51a232cc3a4e98cae67e41c2a1dab5
1 ;; Copyright 2009 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is a part of CL-Video4Linux2
4 ;;
5 ;; CL-Cluster is free software: you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, either version 3 of the License, or
8 ;; (at your option) any later version.
9 ;;
10 ;; CL-Cluster is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;; GNU General Public License for more details.
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 (cl:eval-when (:load-toplevel :execute)
19   (asdf:operate 'asdf:load-op :cffi-grovel)
20   (asdf:operate 'asdf:load-op :iolib.syscalls)
21   (asdf:operate 'asdf:load-op :trivial-garbage))
23 (defpackage #:cl-v4l2-asd
24   (:use :cl :asdf))
26 (in-package #:cl-v4l2-asd)
28 (defsystem cl-v4l2
29   :name "cl-video4linux2"
30   :version "0.1"
31   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
32   :licence "GPLv3"
33   :description "Video4Linux2 bindings"
34   :components ((:file "package")
35                (cffi-grovel:grovel-file "grovel" :depends-on ("package"))
36                (:file "videodev2" :depends-on ("grovel"))
37                (cffi-grovel:grovel-file "aligned" :depends-on ("videodev2"))
38                (:file "v4l2" :depends-on ("videodev2"))))