aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
blob: ef697f173adcfda4a95b42e0cd50921f88a1ae8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/make -f
CONFIG := Release
TERM := xterm
SHELL := /bin/bash
export DH_VERBOSE=1

%:
	dh $@

# disable "make check"
override_dh_auto_test:

# disable stripping debugging symbols
override_dh_clistrip:

override_dh_auto_build:
	git submodule update --init
	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 || true
	rm -rf '$(CURDIR)/usr/lib/jellyfin'