;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER -*- (defpackage #:xpath.system (:use #:cl #:asdf)) (in-package :xpath.system) (defsystem #:xpath :name "plexippus-xpath" :author "Ivan Shvedunov, David Lichteblau" :version "0.1" :serial t :depends-on (:cxml :parse-number :cl-ppcre :yacc) :components ((:file "package") (:file "utils") (:file "test") (:file "pipes") (:file "protocol") #+sbcl (:file "xnum-ieee") #-sbcl (:file "xnum") (:file "types") (:file "extensions") (:file "environment") (:file "axes") (:file "node-tests") (:file "xpath") (:file "functions") (:file "lexer") (:file "parser") (:file "api") (:file "plx") (:file "xmls-compat") (:file "patterns") (:file "xpath-test")))