Support ASDF instead of Mudballs.
Sun Dec 13 13:48:52 CET 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Support ASDF instead of Mudballs.
addfile ./qt.phonon.asd
hunk ./qt.phonon.asd 1
+(defpackage qt.phonon-system
+ (:use :cl :asdf))
+
+(in-package qt.phonon-system)
+
+(asdf:defsystem :qt.phonon
+ :name :qt.phonon
+ :version (0 0 1)
+ :author "Tobias Rautenkranz"
+ :license "GPL with linking exception"
+ :description "Phonon Qt4 multimedia"
+ :depends-on (:smoke :qt)
+
+ :components
+ ((:module "src"
+ :components
+ ((:file "package")
+ (:file "phonon" :depends-on ("package"))))))
hunk ./qt.phonon.mbd 1
-;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
-
-(in-package :sysdef-user)
-
-(define-system :qt.phonon ()
- (:version 0 0 1)
- (:documentation "Phonon Qt4 multimedia")
- (:keywords "GUI" "Video" "Audio" "Multimedia")
- (:author "Tobias Rautenkranz")
- (:license "GPL with linking exception")
- (:uses-macros-from :smoke)
- (:components
- ("src" module
- (:components
- "package"
- ("phonon" (:needs "package")))))
- (:needs :qt))
rmfile ./qt.phonon.mbd