Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocp-indent
Commits:
-
31b75c97
by Stephane Glondu at 2023-07-15T16:27:25+02:00
4 changed files:
Changes:
1 | +ocp-indent (1.8.2-3) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Team upload
|
|
4 | + * Use ocaml_dune DH buildsystem
|
|
5 | + |
|
6 | + -- Stéphane Glondu <glondu@debian.org> Sat, 15 Jul 2023 16:27:19 +0200
|
|
7 | + |
|
1 | 8 | ocp-indent (1.8.2-2) unstable; urgency=medium
|
2 | 9 | |
3 | 10 | * Team upload.
|
... | ... | @@ -4,7 +4,7 @@ Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> |
4 | 4 | Uploaders: Johannes 'josch' Schauer <josch@debian.org>
|
5 | 5 | Build-Depends:
|
6 | 6 | debhelper-compat (= 13),
|
7 | - dh-ocaml,
|
|
7 | + dh-ocaml (>= 1.2),
|
|
8 | 8 | ocaml-nox,
|
9 | 9 | ocaml-dune,
|
10 | 10 | libcmdliner-ocaml-dev,
|
1 | +ocp-indent |
1 | 1 | #!/usr/bin/make -f
|
2 | - |
|
3 | - |
|
4 | -DESTDIR=$(CURDIR)/debian/tmp
|
|
5 | -include /usr/share/ocaml/ocamlvars.mk
|
|
2 | +# -*- makefile -*-
|
|
6 | 3 | |
7 | 4 | %:
|
8 | - dh $@ --with ocaml
|
|
9 | - |
|
10 | -override_dh_auto_build:
|
|
11 | - dune build -p ocp-indent --verbose
|
|
12 | - |
|
13 | -override_dh_auto_install:
|
|
14 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR) --verbose |
|
5 | + dh $@ --with ocaml --buildsystem ocaml_dune |