Skip to content

Commit f5c0c0b

Browse files
Merge pull request #28395 from aliheidary1381/add-pkg-prolect
Package prolect v.1.1.3
2 parents 5921904 + 54ac605 commit f5c0c0b

File tree

1 file changed

+38
-0
lines changed
  • packages/prolect/prolect.1.1.3

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis: "Pure prolog interpreter"
3+
description: """
4+
A pretty basic interpreter for prolog with no support for
5+
integers, lists or anything other than pure logic"""
6+
maintainer: ["Ali Heydari <[email protected]>"]
7+
authors: ["Ali Heydari <[email protected]>"]
8+
license: "CC0-1.0"
9+
tags: ["prolog" "interpreter"]
10+
homepage: "https://github.com/aliheidary1381/prolect"
11+
doc: "https://github.com/aliheidary1381/prolect/blob/main/README.md"
12+
bug-reports: "https://github.com/aliheidary1381/prolect/issues"
13+
depends: [
14+
"ocaml" {>= "5.1"}
15+
"dune" {>= "3.17"}
16+
"linenoise" {os != "win32"}
17+
"ppx_optcomp"
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/aliheidary1381/prolect.git"
35+
url {
36+
src: "https://github.com/aliheidary1381/prolect/releases/download/v1.1.3/source_code.tar.gz"
37+
checksum: "sha256=390fa82ebd26bd25809572bbe44ee6ace7ee845f285a7b6b55ce668be3bde2b2"
38+
}

0 commit comments

Comments
 (0)