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 "lacaml" {with-test} 33] 34depexts: [ 35 ["libfftw3-dev"] {os-family = "debian"} 36 ["fftw-devel"] {os-distribution = "centos"} 37 ["fftw-dev"] {os-distribution = "alpine"} 38 ["fftw-devel"] {os-distribution = "fedora"} 39 ["fftw-devel"] {os-distribution = "rhel"} 40 ["libfftw-devel"] {os-distribution = "mageia"} 41 ["fftw3-devel"] {os-family = "suse" | os-family = "opensuse"} 42 ["math/fftw3"] {os = "freebsd"} 43 ["math/fftw3"] {os = "openbsd"} 44 ["fftw"] {os = "macos" & os-distribution = "homebrew"} 45] 46synopsis: "Binding to the famous Fast Fourier Transform library FFTW" 47url { 48 src: 49 "https://github.com/Chris00/fftw-ocaml/releases/download/0.8.1/fftw3-0.8.1.tbz" 50 checksum: [ 51 "sha256=bf3ff9006b4e8c143da4fbc8383ff41ace7a834af84d7c4ded6cd1ee30b054c7" 52 "md5=cdf13311128b1514838e803e2725761d" 53 ] 54}