Commit a58633ec6a2c1875edb3a1e09086eb5e78b84f12

Thomas de Grivel 2017-01-13T08:40:36

Added repo.asd

diff --git a/repo.asd b/repo.asd
new file mode 100644
index 0000000..36880b8
--- /dev/null
+++ b/repo.asd
@@ -0,0 +1,18 @@
+;;
+;;  repo - source repository utilities
+;;  Copyright 2016-2017 Thomas de Grivel <thomas@lowh.net>
+;;
+
+(defpackage :repo.system
+  (:use :cl :asdf))
+
+(in-package :repo.system)
+
+(defsystem :repo
+  :name "repo"
+  :author "Thomas de Grivel <thomas@lowh.net>"
+  :version "0.1"
+  :description "source repository utilities"
+  :depends-on ()
+  :components
+  ((:file "repo")))