mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
86c94d3e30
Note that this single source package produces two binary packages: one for -pass, and one for -secretservice, so that users can install whichever password backend (and thus deps) that they want. Signed-off-by: Tycho Andersen <tycho@docker.com>
18 lines
357 B
Makefile
Executable File
18 lines
357 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DESTDIR := $(CURDIR)/debian/tmp
|
|
|
|
override_dh_auto_build:
|
|
make secretservice pass
|
|
|
|
override_dh_auto_install:
|
|
install -D bin/docker-credential-secretservice $(DESTDIR)/usr/bin/docker-credential-secretservice
|
|
install -D bin/docker-credential-pass $(DESTDIR)/usr/bin/docker-credential-pass
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_test:
|
|
# no tests
|
|
|