Codebase list rust-libslirp / 3e8297f
wa a tmpdir issue. thanks to Peter Michael Green for the patch Sylvestre Ledru 5 years ago
2 changed file(s) with 18 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-ripgrep (0.10.0-1.1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Use a temporary directory under the package build directory
3 (avoids issues when multiple people build the package on the same machine)
4 (Closes: #921693)
5
6 -- Peter Michael Green <plugwash@debian.org> Thu, 07 Feb 2019 22:48:11 +0000
7
08 rust-ripgrep (0.10.0-1) unstable; urgency=medium
19
210 * Package ripgrep 0.10.0 from crates.io using debcargo 2.2.7
00 #!/usr/bin/make -f
11 %:
22 dh $@ --buildsystem cargo --with bash-completion
3
4 export TMPDIR=$(CURDIR)/tmp
5
6 override_dh_auto_configure:
7 mkdir -p $(CURDIR)/tmp
8 dh_auto_configure $@
9
10 override_dh_auto_clean:
11 dh_auto_clean $@
12 rm -rf $(CURDIR)/tmp
313
414 override_dh_install:
515 mkdir -p debian/ripgrep/usr/share/zsh/vendor-completions debian/ripgrep/usr/share/fish/completions