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 ["dune" "subst"] {dev} 12 ["dune" "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 "dune" 17 "build" 18 "-p" 19 name 20 "-j" 21 jobs 22 ] {os = "macos"} 23 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24] 25depends: [ 26 "ocaml" {>= "4.03.0" & < "4.10"} 27 "dune" 28 "dune-configurator" 29 "cppo" {build} 30 "lacaml" {with-test} 31 "conf-fftw3" 32] 33synopsis: "Binding to the famous Fast Fourier Transform library FFTW" 34url { 35 src: 36 "https://github.com/Chris00/fftw-ocaml/releases/download/0.8.2/fftw3-0.8.2.tbz" 37 checksum: [ 38 "sha256=5f86a90df9fc1b0576ffc1fafe6cdcc03ba31b681887c8500d5e3e0c05ba0c43" 39 "md5=c0729cf62f11485f23b6e6785a67ed28" 40 ] 41}