From 6da9c269778e8f0d6d7ad8885c398202f021ea5b Mon Sep 17 00:00:00 2001 From: Karl Palmskog Date: Sat, 31 Dec 2016 22:42:11 -0600 Subject: [PATCH] add general opam metadata --- descr | 3 +++ opam | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 descr create mode 100644 opam diff --git a/descr b/descr new file mode 100644 index 0000000..5a9bd38 --- /dev/null +++ b/descr @@ -0,0 +1,3 @@ +Disel + +Distributed separation logic. diff --git a/opam b/opam new file mode 100644 index 0000000..834e335 --- /dev/null +++ b/opam @@ -0,0 +1,20 @@ +opam-version: "1.2" +name: "disel" +version: "dev" +maintainer: "jrw12@cs.washington.edu" + +homepage: "https://github.com/DistributedComponents/disel" +dev-repo: "https://github.com/DistributedComponents/disel.git" +bug-reports: "https://github.com/DistributedComponents/disel/issues" +license: "Proprietary" + +build: [ make "-j%{jobs}%" ] +install: [ make "install" ] +remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/disel'" ] +depends: [ + "coq" {>= "8.5" & < "8.6~"} + "coq-mathcomp-ssreflect" {>= "1.6"} +] + +tags: [ "keyword:separation logic" "date:2016-12-31"] +authors: [ "Ilya Sergey <>" "James Wilcox <>" ]