Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocaml-flac
Commits:
-
f0f74807
by Stephane Glondu at 2023-07-16T08:25:55+02:00
4 changed files:
Changes:
1 | +ocaml-flac (0.3.1-2) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Team upload
|
|
4 | + * Use ocaml_dune DH buildsystem
|
|
5 | + |
|
6 | + -- Stéphane Glondu <glondu@debian.org> Sun, 16 Jul 2023 08:25:50 +0200
|
|
7 | + |
|
1 | 8 | ocaml-flac (0.3.1-1) unstable; urgency=medium
|
2 | 9 | |
3 | 10 | [ Debian Janitor ]
|
... | ... | @@ -4,7 +4,7 @@ Priority: optional |
4 | 4 | Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
|
5 | 5 | Uploaders: Kyle Robbertze <paddatrapper@debian.org>
|
6 | 6 | Build-Depends: debhelper-compat (= 13),
|
7 | - dh-ocaml,
|
|
7 | + dh-ocaml (>= 1.2),
|
|
8 | 8 | ocaml-dune,
|
9 | 9 | ocaml-nox,
|
10 | 10 | libflac-dev,
|
1 | +flac |
1 | 1 | #!/usr/bin/make -f
|
2 | - |
|
3 | -include /usr/share/ocaml/ocamlvars.mk
|
|
4 | - |
|
5 | -DESTDIR = $(CURDIR)/debian/tmp
|
|
2 | +# -*- makefile -*-
|
|
6 | 3 | |
7 | 4 | %:
|
8 | - dh $@ --with ocaml
|
|
9 | - |
|
10 | -override_dh_auto_build:
|
|
11 | - dune build -p flac
|
|
12 | - |
|
13 | -override_dh_auto_install:
|
|
14 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR) |
|
5 | + dh $@ --with ocaml --buildsystem ocaml_dune |