Skip to content

Commit

Permalink
Switched to topkg
Browse files Browse the repository at this point in the history
  • Loading branch information
mmottl committed Aug 2, 2017
1 parent 2fb9431 commit 466aeb0
Show file tree
Hide file tree
Showing 10 changed files with 1,231 additions and 861 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.*.swp
.merlin
*.install
_build
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### 6.39.0 (2017-08-02)

* Switched to jbuilder and topkg
675 changes: 675 additions & 0 deletions GPL.md

Large diffs are not rendered by default.

339 changes: 0 additions & 339 deletions GPL.txt

This file was deleted.

521 changes: 521 additions & 0 deletions LGPL.md

Large diffs are not rendered by default.

520 changes: 0 additions & 520 deletions LGPL.txt

This file was deleted.

4 changes: 2 additions & 2 deletions COPYING.txt → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Applications that are part of this distribution are subject to the terms of
the GNU General Public License version 2 (see file GPL.txt).
the GNU General Public License version 3 (see file GPL.md).

Libraries that are part of this distribution are subject to the terms of the
GNU Lesser General Public License version 2.1 with the OCaml linking exception
(see file LGPL.txt).
(see file LGPL.md).
13 changes: 13 additions & 0 deletions ocaml-makefile.opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
opam-version: "1.2"
maintainer: "Markus Mottl <markus.mottl@gmail.com>"
authors: [ "Markus Mottl <markus.mottl@gmail.com>" ]
license: "LGPL-2.1+ with OCaml linking exception"
homepage: "https://mmottl.github.io/ocaml-makefile"
dev-repo: "https://github.com/mmottl/ocaml-makefile.git"
bug-reports: "https://github.com/mmottl/ocaml-makefile/issues"

build: ["mkdir" "-p" "%{lib}%/ocaml-makefile"]

install: ["cp" "OCamlMakefile" "%{lib}%/ocaml-makefile"]

remove: ["rm" "%{lib}%/ocaml-makefile/OCamlMakefile"]
13 changes: 13 additions & 0 deletions pkg/pkg.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env ocaml

#use "topfind"
#require "topkg"

open Topkg

let () =
let opams = [
Pkg.opam_file ~lint_deps_excluding:None ~install:false "ocaml-makefile.opam"
] in
Pkg.describe ~opams ~metas:[] "ocaml-makefile" @@ fun _c ->
Ok [ Pkg.nothing ]
File renamed without changes.

0 comments on commit 466aeb0

Please sign in to comment.