mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
13 lines
324 B
Common Lisp
13 lines
324 B
Common Lisp
;;;; sdl-fonts.asd
|
|
|
|
(asdf:defsystem #:sdl-fonts
|
|
:serial t
|
|
:description "SDL-based TTF font rendering for StumpWM."
|
|
:version "1.0.1"
|
|
:author "Mihail Ivanchev <contact@ivanchev.net>"
|
|
:license "MIT"
|
|
:depends-on (#:stumpwm #:cffi #:cffi-libffi)
|
|
:components ((:file "package")
|
|
(:file "sdl-fonts")))
|
|
|