Download this file
40 lines (36 with data), 1.5 kB
;;; -*- lisp -*-
(defpackage #:lispbuilder-sdl-gfx-system
(:use #:cl #:asdf))
(in-package #:lispbuilder-sdl-gfx-system)
(defsystem lispbuilder-sdl-gfx
:description "lispbuilder-sdl-gfx: SDL_gfx v2.0.16 library wrapper and tools"
:long-description
"lispbuilder-sdl-gfx is a wrapper for the SDL_gfx v2.0.16 library.
The SDL_gfx library extends the base functionality implemented by SDL
and provides Graphic Primitives, Rotozoomimg, Framerate control, and
MMX image filters. The wrapper is implemeted using CFFI to be highly
compatible across lisp implementations."
:version "0.6.4"
:author "Luke Crook <luke@balooga.com>"
:maintainer "Application Builder <application-builder@lispniks.com>"
:licence "MIT"
:depends-on (cffi lispbuilder-sdl lispbuilder-sdl-gfx-cffi)
:perform (load-op :after (op lispbuilder-sdl-gfx)
(pushnew :lispbuilder-sdl-gfx *features*))
:components
((:module "sdl-gfx"
:components
((:file "package")
(:file "globals" :depends-on ("package"))
(:file "util" :depends-on ("package"))
(:file "font" :depends-on ("package" "globals"))
(:file "string-solid" :depends-on ("font"))
(:file "string-shaded" :depends-on ("font"))
(:file "sdl-gfx-util" :depends-on ("package" "util" "globals"))))
(:module "documentation"
:components
((:html-file "lispbuilder-sdl-gfx")
(:html-file "header")
(:html-file "footer")
(:static-file "sdl-gfx-examples_width-height.png")
(:doc-file "README")))))
×
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.