1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
%:
dh $@ --buildsystem=ruby --with ruby
override_dh_auto_install:
dh_auto_install
install -D -m644 $(CURDIR)/completion/tmuxinator.zsh \
$(CURDIR)/debian/tmuxinator/usr/share/zsh/vendor-completions/_tmuxinator
install -D -m644 $(CURDIR)/completion/tmuxinator.bash \
$(CURDIR)/debian/tmuxinator/usr/share/bash-completion/completions/tmuxinator
install -D -m644 $(CURDIR)/completion/tmuxinator.fish \
$(CURDIR)/debian/tmuxinator/usr/share/fish/vendor_completions.d/tmuxinator.fish
install -D -m644 $(CURDIR)/completion/mux.fish \
$(CURDIR)/debian/tmuxinator/usr/share/fish/vendor_completions.d/mux.fish
override_dh_auto_clean:
dh_auto_clean
rm -fr $(CURDIR)/coverage
override_dh_installchangelogs:
dh_installchangelogs -k CHANGELOG.md
|