Commit
Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: aad74aad6e3eea2054266817d326e8154dd0fcba
Timestamp: Sun, 23 Aug 2020 23:43:29 +0000 (4 years ago)

+8 -3 +/-3 browse
build static non-PIE binaries by default
1diff --git a/bin/dune b/bin/dune
2index 15fc309..a0adef5 100644
3--- a/bin/dune
4+++ b/bin/dune
5 @@ -2,7 +2,8 @@
6 (public_name note)
7 (name note)
8 (libraries note_lib core)
9- (preprocess
10- (pps ppx_jane)))
11+ (preprocess (pps ppx_jane))
12+ (modes byte exe)
13+ (ocamlopt_flags -ccopt -static)
14+ )
15 (env (dev (flags (:standard -w -32)(:standard -w -27))))
16-
17 diff --git a/dune-project b/dune-project
18index d8ea3a8..3adfbb4 100644
19--- a/dune-project
20+++ b/dune-project
21 @@ -8,10 +8,12 @@
22 (source (github kevinschoon/note))
23 (license AGPL3)
24 (authors "Kevin Schoon <kevinschoon@gmail.com>")
25+ (maintainers "Kevin Schoon <kevinschoon@gmail.com>")
26
27 (package
28 (name note)
29 (synopsis "Note is a simple CLI based note taking program")
30+ (description "Note is a simple CLI based note taking program")
31 (depends
32 (base
33 (>= v0.14.0))
34 diff --git a/note.opam b/note.opam
35index ab28665..3f4fbb4 100644
36--- a/note.opam
37+++ b/note.opam
38 @@ -2,6 +2,8 @@
39 opam-version: "2.0"
40 version: "0.0.2"
41 synopsis: "Note is a simple CLI based note taking program"
42+ description: "Note is a simple CLI based note taking program"
43+ maintainer: ["Kevin Schoon <kevinschoon@gmail.com>"]
44 authors: ["Kevin Schoon <kevinschoon@gmail.com>"]
45 license: "AGPL3"
46 homepage: "https://github.com/kevinschoon/note"