-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,171 additions
and
3,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Build | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-20.04, macos-latest] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: avsm/setup-ocaml@master | ||
- run: opam pin add -n . | ||
- run: opam depext -yt bjack | ||
- run: opam install -t . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
Makefile | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.guess | ||
config.log | ||
config.status | ||
config.sub | ||
configure | ||
install-sh | ||
src/META | ||
src/Makefile | ||
src/._bcdi/ | ||
src/._d/ | ||
src/._ncdi/ | ||
src/*.a | ||
src/*.cm* | ||
src/*.o | ||
src/*.so | ||
*~ | ||
_build | ||
*.byte | ||
*.native | ||
_tests | ||
.merlin | ||
*.install |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
profile = conventional | ||
break-separators = after | ||
space-around-lists = false | ||
doc-comments = before | ||
match-indent = 2 | ||
match-indent-nested = always | ||
parens-ite | ||
exp-grouping = preserve | ||
module-item-spacing = compact |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
0.1.6 (unreleased) | ||
====== | ||
* Switch to dune! | ||
|
||
0.1.5 (2015-07-29) | ||
===== | ||
* Fix some warnings and deprecated calls. | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
name: "bjack" | ||
version: "0.1.5" | ||
maintainer: "Romain Beauxis <toots@rastageeks.org>" | ||
authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" | ||
version: "0.1.6" | ||
synopsis: | ||
"Bindings for the Jack library which provides functions for linking audio programs" | ||
maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] | ||
authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] | ||
license: "LGPL-2.1" | ||
homepage: "https://github.com/savonet/ocaml-bjack" | ||
build: [ | ||
["./bootstrap"] {dev} | ||
["./configure" "--prefix" prefix] | ||
[make "clean"] {dev} | ||
[make] | ||
] | ||
install: [ | ||
[make "install"] | ||
] | ||
bug-reports: "https://github.com/savonet/ocaml-bjack/issues" | ||
depends: [ | ||
"ocaml" | ||
"ocamlfind" {build} | ||
"dune" {>= "2.0"} | ||
"dune-configurator" | ||
"conf-bjack" | ||
] | ||
depexts: [ | ||
["jack-dev"] {os-distribution = "alpine"} | ||
["libjack-dev" "libsamplerate0-dev"] {os-distribution = "debian"} | ||
["libjack-dev" "libsamplerate0-dev"] {os-distribution = "ubuntu"} | ||
["jack"] {os = "macos" & os-distribution = "homebrew"} | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
bug-reports: "https://github.com/savonet/ocaml-bjack/issues" | ||
dev-repo: "git+https://github.com/savonet/ocaml-bjack.git" | ||
synopsis: | ||
"Bindings for the Jack library which provides functions for linking audio programs" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
(lang dune 2.0) | ||
(version 0.1.6) | ||
(name bjack) | ||
(source (github savonet/ocaml-bjack)) | ||
(license LGPL-2.1) | ||
(authors "The Savonet Team <savonet-users@lists.sourceforge.net>") | ||
(maintainers "The Savonet Team <savonet-users@lists.sourceforge.net>") | ||
|
||
(generate_opam_files true) | ||
|
||
(package | ||
(name bjack) | ||
(synopsis "Bindings for the Jack library which provides functions for linking audio programs") | ||
(depends | ||
(dune (>= 2.0)) | ||
dune-configurator | ||
conf-bjack) | ||
) |
Oops, something went wrong.