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 ["env" "FFTW3_CFLAGS=-I /usr/local/include -L /usr/local/lib -I /usr/local/include -L /usr/local/lib" 14 "dune" "build" "-p" name "-j" jobs 15 ] {os = "macos"} 16 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 17] 18depends: [ 19 "ocaml" {>= "4.03.0" & < "4.10"} 20 "dune" {>= "1.1"} 21 "dune-configurator" 22 "cppo" {build} 23 "lacaml" {with-test & os = "linux"} 24 "conf-fftw3" 25] 26synopsis: "Binding to the Fast Fourier Transform library FFTW" 27description: """ 28Library binding the seminal library FFTW.""" 29url { 30 src: 31 "https://github.com/Chris00/fftw-ocaml/releases/download/0.8.3/fftw3-0.8.3.tbz" 32 checksum: [ 33 "sha256=99e46004ca02ddff9f2a1f1213426ccab4fbfcc687f1a436df56f52200a2afff" 34 "sha512=3a48d0b8243f3c14c845f68b40617d199940339c5aa9b92bf3103406e917ef8b44c707db2698142e1c485645a2cd656d020e6064bc7e938ec8891d49ee90b6d7" 35 ] 36}