mirror of
https://github.com/jellyfin/jellyfin-media-player.git
synced 2024-11-23 05:59:43 +00:00
16 lines
292 B
Makefile
Executable File
16 lines
292 B
Makefile
Executable File
#! /usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
DOWNLOAD_ONLY=1 ./download_webclient.sh
|
|
tar -xzf dist.tar.gz
|
|
mkdir obj-x86_64-linux-gnu
|
|
mv jellyfin/jellyfin-web obj-x86_64-linux-gnu/dist
|
|
dh_auto_configure $@
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean $@
|
|
rm dist.tar.gz || true
|