rules 439 B

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