2019-05-02 17:45:07 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
# Makefile Usage:
|
|
|
|
#
|
|
|
|
# 1) Make sure that you have the curl command line executable in your path
|
|
|
|
# 2) Set the variable ROKU_DEV_TARGET in your environment to the IP
|
|
|
|
# address of your Roku box. (e.g. export ROKU_DEV_TARGET=192.168.1.1.
|
|
|
|
# Set in your this variable in your shell startup (e.g. .bashrc)
|
|
|
|
# 3) and set up the ROKU_DEV_PASSWORD environment variable, too
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
APPNAME = Jellyfin_Roku
|
2022-12-14 01:39:01 +00:00
|
|
|
VERSION = 1.6.3
|
2019-05-02 17:45:07 +00:00
|
|
|
|
2022-12-07 23:19:56 +00:00
|
|
|
ZIP_EXCLUDE= -x xml/* -x artwork/* -x \*.pkg -x storeassets\* -x keys\* -x \*/.\* -x *.git* -x *.DS* -x *.pkg* -x dist/**\* -x out/**\*
|
2019-05-02 17:45:07 +00:00
|
|
|
|
|
|
|
include app.mk
|
|
|
|
|
2020-06-27 14:13:00 +00:00
|
|
|
dev:
|
|
|
|
$(MAKE) BUILD='dev' package
|
|
|
|
|
|
|
|
beta:
|
|
|
|
$(MAKE) BUILD='beta' package
|
|
|
|
|
|
|
|
release:
|
|
|
|
$(MAKE) BUILD='release' package
|
|
|
|
|
2019-10-07 04:23:48 +00:00
|
|
|
deploy: prep_staging remove install
|