this repo has no description
1opam-version: "2.0" 2authors: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>"] 3maintainer: "Christophe.Troestler@umons.ac.be" 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 5homepage: "https://github.com/Chris00/fftw-ocaml" 6dev-repo: "git+https://github.com/Chris00/fftw-ocaml.git" 7bug-reports: "https://github.com/Chris00/fftw-ocaml/issues" 8doc: "https://Chris00.github.io/fftw-ocaml/doc" 9tags: ["FFT"] 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] {os != "macos"} 13 [ 14 "env" 15 "FFTW3_CFLAGS=-I /usr/local/include -L /usr/local/lib -I /usr/local/include -L /usr/local/lib" 16 "jbuilder" 17 "build" 18 "-p" 19 name 20 "-j" 21 jobs 22 ] {os = "macos"} 23 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 24] 25depends: [ 26 "ocaml" {>= "4.03.0" & < "4.10"} 27 "jbuilder" {>= "1.0+beta7"} 28 "cppo" {build} 29 "configurator" {build} 30 "base" {build} 31 "stdio" {build} 32 "archimedes" {with-test} 33 "lacaml" {with-test} 34] 35depexts: [ 36 ["libfftw3-dev"] {os-family = "debian"} 37 ["fftw-devel"] {os-distribution = "centos"} 38 ["math/fftw3"] {os = "freebsd"} 39 ["math/fftw3"] {os = "openbsd"} 40 ["fftw"] {os = "macos" & os-distribution = "homebrew"} 41] 42synopsis: "Binding to the famous Fast Fourier Transform library FFTW" 43url { 44 src: 45 "https://github.com/Chris00/fftw-ocaml/releases/download/0.8/fftw3-0.8.tbz" 46 checksum: [ 47 "sha256=af4c2ddfdfe07d05630d0ff42ab47dda383853535a588287a727bacdc7bdeb95" 48 "md5=abac0177c2c7f81dd14f70d3936e31a1" 49 ] 50}