-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
opam
73 lines (68 loc) · 2.37 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
opam-version: "2.0"
maintainer: "michipili@gmail.com"
authors: "Michael Grünewald"
license: "CeCILL-B"
homepage: "https://github.com/michipili/bsdowl"
bug-reports: "https://github.com/michipili/bsdowl/issues"
dev-repo: "git+https://github.com/michipili/bsdowl.git"
tags: [
"bsd"
"bmake"
"build"
]
build: [
["./configure" "--prefix" prefix]
[conf-bmake:path "-r" "build"]
]
install: [
[conf-bmake:path "install"]
]
remove: [
["sh" "%{build}%/opam/files/remove.sh" prefix]
]
depends: ["ocaml" "conf-bmake" "ocamlfind"]
synopsis: "This collection of BSD Make directives aims at providing a highly"
description: """
portable build system targetting modern UNIX systems and supporting
common or less command languages. This is a build system, which means
that it can be used to organise fairly complex projects.
BSD Owl Scripts assists developers in the production, installation and
distribution of projects comprising the following types of products:
- C programs, compiled for several targets
- C libraries, static and shared, compiled for several targets
- Shell scripts
- Python scripts
- OCaml programs
- OCaml libraries, with ocamldoc documentation
- OCaml plugins
- TeX documents, prepared for several printing devices
- METAPOST figures, with output as PDF, PS, SVG or PNG,
either as part of a TeX document or as standalone documents
BSD Owl Scripts offers developers a rich set of features easing
project management:
- Support of compilation profiles
- Support of the parallel mode (at the directory level)
- Support of separate trees for sources and objects
- Support of architecture-dependant compilation options
- Support GNU autoconf
- Production of GPG-signed tarballs
- Developer subshell, empowered with project-specific scripts
- Literate programming using noweb
- Preprocessing with m4
WWW: https://github.com/michipili/bsdowl"""
url {
src:
"https://github.com/michipili/bsdowl/releases/download/v3.0.0-20150830/bsdowl-3.0.0-20150830.tar.gz"
checksum: [
"sha256=eff6821a0855b363c7d51da9c0b97894103e294423d00582b93674ecf95fe09f"
"md5=cc233c29bfdda7f0c6951db88f5a3293"
]
}
extra-source "remove.sh" {
src:
"https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/bsdowl/remove.sh.3.0.0-20150830"
checksum: [
"sha256=b05d9658cc6b304cc13758592eab33dd5b599f06a1016bc5625ce6c78a31ebbb"
"md5=9c52ca52cb48936aa45bf99b56fa1497"
]
}