瀏覽代碼

Small fixes, trying to get this to build

Vasily 6 年之前
父節點
當前提交
46ba3e3549
共有 2 個文件被更改,包括 3 次插入4 次删除
  1. 1 1
      debian/control
  2. 2 3
      debian/rules

+ 1 - 1
debian/control

@@ -17,6 +17,6 @@ Replaces: mediabrowser, emby, emby-server-beta, emby-server-dev
 Breaks: mediabrowser, emby, emby-server-beta, emby-server-dev
 Breaks: mediabrowser, emby, emby-server-beta, emby-server-dev
 Conflicts: mediabrowser, emby, emby-server-beta, emby-server-dev
 Conflicts: mediabrowser, emby, emby-server-beta, emby-server-dev
 Architecture: all
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, at, libsqlite3-0
+Depends: ${shlibs:Depends}, ${misc:Depends}, at, libsqlite3-0, dotnet-runtime-2.1
 Description: Emby Server is a home media server.
 Description: Emby Server is a home media server.
  It is built on top of other popular open source technologies such as Service Stack, jQuery, jQuery mobile, and Mono. It features a REST-based api with built-in documentation to facilitate client development. We also have client libraries for our api to enable rapid development.
  It is built on top of other popular open source technologies such as Service Stack, jQuery, jQuery mobile, and Mono. It features a REST-based api with built-in documentation to facilitate client development. We also have client libraries for our api to enable rapid development.

+ 2 - 3
debian/rules

@@ -1,6 +1,5 @@
 #! /usr/bin/make -f
 #! /usr/bin/make -f
 CONFIG := Release
 CONFIG := Release
-RUNTIME := linux-x64
 TERM := xterm
 TERM := xterm
 SHELL := /bin/bash
 SHELL := /bin/bash
 export DH_VERBOSE=1
 export DH_VERBOSE=1
@@ -15,7 +14,7 @@ override_dh_auto_test:
 override_dh_clistrip:
 override_dh_clistrip:
 
 
 override_dh_auto_build:
 override_dh_auto_build:
-	dotnet build --configuration $(CONFIG) --runtime $(RUNTIME) $(CURDIR)/MediaBrowser.sln
+	dotnet build --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln
 
 
 override_dh_auto_clean:
 override_dh_auto_clean:
-	dotnet clean --configuration $(CONFIG) --runtime $(RUNTIME) $(CURDIR)/MediaBrowser.sln
+	dotnet clean --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln