File tree 5 files changed +15
-23
lines changed
5 files changed +15
-23
lines changed Original file line number Diff line number Diff line change 1
1
default : all
2
2
3
3
all :
4
- jbuilder build @install --dev
5
-
4
+ dune build
6
5
test :
7
- jbuilder runtest
6
+ dune runtest
8
7
9
8
clean :
10
- jbuilder clean
11
-
12
- doc :
13
- jbuilder build @doc
9
+ dune clean
14
10
15
- .PHONY : all test clean doc
11
+ .PHONY : all test clean
Original file line number Diff line number Diff line change @@ -8,15 +8,12 @@ bug-reports: "https://github.com/Drup/bytepdf/issues"
8
8
dev-repo: "git+https://github.com/Drup/bytepdf.git"
9
9
10
10
depends: [
11
- "jbuilder " {build}
12
- "obytelib"
11
+ "dune " {build}
12
+ "obytelib" { >= "1.4" }
13
13
"camlpdf"
14
14
]
15
15
available: ocaml-version >= "4.03"
16
16
build: [
17
- ["jbuilder" "subst" "-n" name] {pinned}
18
- ["jbuilder" "build" "-p" name "-j" jobs "@install"]
19
- ]
20
- build-test: [
21
- ["jbuilder" "runtest" "-p" name]
17
+ ["dune" "subst"] {pinned}
18
+ ["dune" "build" "-p" name "-j" jobs]
22
19
]
Original file line number Diff line number Diff line change
1
+ (executable
2
+ (name bytepdf)
3
+ (public_name bytepdf)
4
+ (modules Bytepdf)
5
+ (libraries obytelib camlpdf cmdliner containers bos))
6
+
Original file line number Diff line number Diff line change
1
+ (lang dune 1 .1)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments