aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorJoshua Boniface <joshua@boniface.me>2018-12-09 16:41:49 -0500
committerJoshua Boniface <joshua@boniface.me>2018-12-09 19:05:33 -0500
commita9a798f81a836e31a8b82eab19558d9b95e7a63f (patch)
tree668e5c59203803e7dd25c149d00dcab80151d4c9 /debian/rules
parentc8c35864fe5dbf5027a2d1e682abd72654d309e8 (diff)
Rename numerous debian control elements
Replace the name emby/emby-server with jellyfin everywhere.
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules10
1 files changed, 6 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules
index 107394fbe..3d596ddde 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,9 +14,11 @@ override_dh_auto_test:
override_dh_clistrip:
override_dh_auto_build:
-# dotnet build --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/emby-server/bin'
- dotnet publish --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/emby-server/bin'
+ git submodule init
+ git submodule update
+ dotnet build --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/jellyfin/bin'
+ dotnet publish --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/jellyfin/bin'
override_dh_auto_clean:
- dotnet clean --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln
- rm -rf '$(CURDIR)/usr/lib/emby-server'
+ dotnet clean --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln || true
+ rm -rf '$(CURDIR)/usr/lib/jellyfin'