this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Beauxis <toots@rastageeks.org>"
3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>"
4homepage: "https://github.com/savonet/ocaml-lame"
5build: [
6 ["./configure" "--prefix" prefix] {os != "macos"}
7 [
8 "./configure"
9 "CFLAGS=-I/usr/local/include"
10 "LDFLAGS=-L/usr/local/lib"
11 "OCAMLFLAGS=-ccopt -I/usr/local/include -cclib -L/usr/local/lib"
12 "--prefix"
13 prefix
14 ] {os = "macos"}
15 [make]
16]
17install: [
18 [make "install"]
19]
20remove: ["ocamlfind" "remove" "lame"]
21depends: ["ocaml" "ocamlfind"]
22depexts: [
23 ["lame-dev"] {os-distribution = "alpine"}
24 ["lame-devel"] {os-distribution = "centos"}
25 ["lame-devel"] {os-distribution = "fedora"}
26 ["lame-devel"] {os-family = "suse" | os-family = "opensuse"}
27 ["libmp3lame-dev"] {os-family = "debian"}
28 ["lame"] {os = "macos" & os-distribution = "homebrew"}
29]
30bug-reports: "https://github.com/savonet/ocaml-lame/issues"
31dev-repo: "git+https://github.com/savonet/ocaml-lame.git"
32synopsis:
33 "Bindings for the lame library which provides functions for encoding mp3 files"
34flags: light-uninstall
35url {
36 src:
37 "https://github.com/savonet/ocaml-lame/releases/download/0.3.3/ocaml-lame-0.3.3.tar.gz"
38 checksum: [
39 "sha256=eee8b36d1f9f134b5e9845b6fe51d0522fb841c7cfb7aa38194ef76df4c35799"
40 "md5=a1585835f94f8d459157263ed2aaede3"
41 ]
42}