X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-cffi.asd;fp=clsql-cffi.asd;h=fb6fb7df2f9a3ad9e58ef53d0325e23709cefa6c;hp=0000000000000000000000000000000000000000;hb=19b10fa06be27b615b658c67fccb1b35e1879e9e;hpb=56a0b7f90d30e321ca7e95f15dab3c43bd551e3f diff --git a/clsql-cffi.asd b/clsql-cffi.asd new file mode 100644 index 0000000..fb6fb7d --- /dev/null +++ b/clsql-cffi.asd @@ -0,0 +1,27 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-cffi.asd +;;;; Purpose: ASDF System definition for CLSQL using CFFI-UFFI-COMPAT +;;;; Author: Kevin M. Rosenberg +;;;; Created: Jan 2010 +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(push :clsql-cffi cl:*features*) + +(defpackage #:clsql-cffi-system (:use #:asdf #:cl)) +(in-package #:clsql-cffi-system) + +(defsystem clsql-cffi + :name "CLSQL-CFFI" + :author "Kevin Rosenberg " + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "CLSQL using CFFI-UFFI-COMPAT interface" + :depends-on (clsql) + :components nil)