Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Fill in dune-project file #116

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
vmImage: 'macOS 10.13'

variables:
STAGING_DIRECTORY: /Users/vsts/STAGING
STAGING_DIRECTORY_UNIX: /Users/vsts/STAGING
ESY__CACHE_INSTALL_PATH: /Users/vsts/.esy/3____________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/vsts/.esy/source/i
STAGING_DIRECTORY: /Users/runner/STAGING
STAGING_DIRECTORY_UNIX: /Users/runner/STAGING
ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i
ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i
# ESY__NPM_ROOT: /usr/local/lib/node_modules/esy

steps:
Expand Down
19 changes: 18 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
(lang dune 1.1)
(lang dune 1.11)
(using fmt 1.2)
(name reglfw)
(generate_opam_files true)

(source (github revery-ui/reason-glfw))
(authors "Bryan Phelps")
(maintainers "Bryan Phelps <[email protected]>")
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should anybody else be added to these authors and maintainers fields?

(license MIT)

(package
(name reglfw)
(synopsis "Cross-platform Reason / OCaml bindings for GLFW")
(description "Cross-platform Reason / OCaml bindings for GLFW")
(depends
(ocaml (>= 4.07))
(dune (>= 1.11)))
)
31 changes: 26 additions & 5 deletions reglfw.opam
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
opam-version: "1.2"
version: "dev"
maintainer: "[email protected]"
author: ["Bryan Phelps"]
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Cross-platform Reason / OCaml bindings for GLFW"
description: "Cross-platform Reason / OCaml bindings for GLFW"
maintainer: ["Bryan Phelps <[email protected]>"]
authors: ["Bryan Phelps"]
license: "MIT"
homepage: "https://github.com/revery-ui/reason-glfw"
bug-reports: "https://github.com/revery-ui/reason-glfw/issues"
depends: [
"ocaml" {>= "4.07"}
"dune" {>= "1.11"}
]
build: [

["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/revery-ui/reason-glfw.git"