14 lines
376 B
Makefile
14 lines
376 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
# Install bash completion
|
|
install -D -m 644 src/dropshell-completion.bash debian/dropshell/etc/bash_completion.d/dropshell
|
|
# Install configuration
|
|
install -D -m 644 src/dropshell.conf debian/dropshell/etc/dropshell.conf
|