rules 457 B

123456789101112131415161718192021
  1. #! /usr/bin/make -f
  2. CONFIG := Release
  3. RUNTIME := linux-x64
  4. TERM := xterm
  5. SHELL := /bin/bash
  6. export DH_VERBOSE=1
  7. %:
  8. dh $@
  9. # disable "make check"
  10. override_dh_auto_test:
  11. # disable stripping debugging symbols
  12. override_dh_clistrip:
  13. override_dh_auto_build:
  14. dotnet build --configuration $(CONFIG) --runtime $(RUNTIME) $(CURDIR)/MediaBrowser.sln
  15. override_dh_auto_clean:
  16. dotnet clean --configuration $(CONFIG) --runtime $(RUNTIME) $(CURDIR)/MediaBrowser.sln