Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocaml-soundtouch
Commits:
-
bbd61951
by Stephane Glondu at 2023-07-15T13:59:09+02:00
4 changed files:
Changes:
1 | +ocaml-soundtouch (0.1.9-2) 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 13:58:58 +0200
|
|
7 | + |
|
1 | 8 | ocaml-soundtouch (0.1.9-1) unstable; urgency=low
|
2 | 9 | |
3 | 10 | [ Stéphane Glondu ]
|
... | ... | @@ -6,7 +6,7 @@ Build-Depends: |
6 | 6 | debhelper-compat (= 13),
|
7 | 7 | dh-buildinfo,
|
8 | 8 | ocaml-nox,
|
9 | - dh-ocaml,
|
|
9 | + dh-ocaml (>= 1.2),
|
|
10 | 10 | libsoundtouch-dev (>= 1.5.0),
|
11 | 11 | ocaml-dune,
|
12 | 12 | libdune-ocaml-dev,
|
1 | +soundtouch |
1 | 1 | #!/usr/bin/make -f
|
2 | 2 | # -*- makefile -*-
|
3 | 3 | |
4 | -include /usr/share/ocaml/ocamlvars.mk
|
|
5 | - |
|
6 | -DESTDIR=$(CURDIR)/debian/tmp
|
|
7 | - |
|
8 | 4 | %:
|
9 | - dh $@ --with ocaml
|
|
10 | - |
|
11 | -override_dh_auto_build:
|
|
12 | - dune build -p soundtouch
|
|
13 | - |
|
14 | -override_dh_auto_install:
|
|
15 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR) |
|
5 | + dh $@ --with ocaml --buildsystem ocaml_dune |