this repo has no description
1opam-version: "2.0" 2authors: "https://github.com/stevengj/nlopt/blob/master/AUTHORS" 3homepage: "https://nlopt.readthedocs.io/en/latest/" 4maintainer: "unixjunkie@sdf.org" 5bug-reports: "https://github.com/ocaml/opam-repository/issues" 6license: "LGPL-2.1-or-later" 7build: [ 8 ["mkdir" "build"] 9 ["sh" "-c" "cd build && %{conf-cmake:cmd}% -Wno-dev -DCMAKE_INSTALL_PREFIX=%{lib}% ../"] 10 [make "-C" "build" "-j" jobs] 11] 12install: [ 13 [make "-C" "build" "install"] 14] 15depends: [ 16 "conf-cmake" 17] 18available: os != "win32" 19synopsis: "User-space installer for the NLopt library" 20description: """ 21Attempt a user-space installation of NLopt. 22If successful, libnlopt will be installed 23into opam's lib directory. 24Note: NLopt is a C++ library which is required by some OCaml 25software in opam-repository. 26Having an automatic user-space installer in opam-repos. will make those 27software easier to install (e.g. even if you don't have root access 28to install the corresponding system package). 29""" 30dev-repo: "git://https://github.com/stevengj/nlopt.git" 31url { 32 src: "https://github.com/stevengj/nlopt/archive/refs/tags/v2.7.1.tar.gz" 33 checksum: [ 34 "sha256=db88232fa5cef0ff6e39943fc63ab6074208831dc0031cf1545f6ecd31ae2a1a" 35 ] 36}