Download this file
45 lines (42 with data), 1.3 kB
;;; -*- lisp -*-
(defpackage #:lispbuilder-sdl-cffi-system
(:use #:cl #:asdf))
(in-package #:lispbuilder-sdl-cffi-system)
(defsystem lispbuilder-sdl-cffi
:description "lispbuilder-sdl-cffi: Basic Lisp wrapper for the SDL library."
:long-description
"The lispbuilder-sdl-cffi package uses CFFI to provide a very low-level set of Lisp bindings to the SDL library."
:version "0.9"
:author "Justin Heyes-Jones <justinhj@gmail.com>, Luke J Crook <luke@balooga.com>"
:maintainer "Application Builder <application-builder@lispniks.com>"
:licence "MIT"
:depends-on (cffi)
:components
((:module "cffi"
:components
((:file "package")
(:file "library")
(:file "util")
(:file "cffi-util")
(:file "cffi-translate")
(:file "endian")
(:file "version")
(:file "stdinc")
(:file "timer")
(:file "error")
(:file "rwops")
(:file "audio")
(:file "cdrom")
(:file "joystick")
(:file "active")
(:file "keysym")
(:file "mouse")
(:file "events")
(:file "syswm")
(:file "video")
(:file "sdl")
(:file "documentation"))
:serial t)
(:module "build"
:components
((:static-file "sdlswig.i")))))
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.