-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.mk
130 lines (108 loc) · 4.58 KB
/
app.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#########################################################################
# common include file for application Makefiles
#
# Makefile Usage:
# > make
# > make install
# > make remove
#
# to exclude certain files from being added to the zipfile during packaging
# include a line like this:ZIP_EXCLUDE= -x keys\*
# that will exclude any file who's name begins with 'keys'
# to exclude using more than one pattern use additional '-x <pattern>' arguments
# ZIP_EXCLUDE= -x \*.pkg -x storeassets\*
#
# Important Notes:
# To use the "install" and "remove" targets to install your
# application directly from the shell, you must do the following:
#
# 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)
##########################################################################
PKGREL = ../packages
ZIPREL = ../zips
SOURCEREL = ..
ROKU_DEV_USERNAME ?= rokudev
ROKU_DEV_PASSWORD ?= rokudev
CURL = curl --anyauth -u $(ROKU_DEV_USERNAME):$(ROKU_DEV_PASSWORD)
BUILD_MAJOR := $(shell grep major_version manifest | awk -F'=' '{print $$2}')
BUILD_VER_OLD := $(shell grep minor_version manifest | awk -F'=' '{print $$2}')
BUILD_VER_NEW := $(shell expr $(BUILD_VER_OLD) + 1)
BUILD_DATE := $(shell date +'%Y%m%d')
.PHONY: all $(APPNAME)
$(APPNAME): $(APPDEPS)
@echo "****************************************"
@echo "*** APPLICATION: $(APPNAME)"
@echo "*** BUILD VERSION: $(BUILD_MAJOR).$(BUILD_VER_NEW)"
@echo "*** BUILD DATE: $(BUILD_DATE)"
@echo "****************************************"
@echo " >> pushing new minor version to manifest"
@sed -i.bak "s/minor_version.*/minor_version=$(BUILD_VER_NEW)/" ./manifest
@echo " >> pushing new build date to manifest"
@sed -i.bak "s/build_version.*/build_version=$(BUILD_DATE)/" ./manifest
@rm manifest.bak
@echo "*** Creating $(APPNAME).zip ***"
@echo " >> removing old application zip $(ZIPREL)/$(APPNAME).zip"
@if [ -e "$(ZIPREL)/$(APPNAME).zip" ]; \
then \
rm $(ZIPREL)/$(APPNAME).zip; \
fi
@echo " >> creating destination directory $(ZIPREL)"
@if [ ! -d $(ZIPREL) ]; \
then \
mkdir -p $(ZIPREL); \
fi
@echo " >> setting directory permissions for $(ZIPREL)"
@if [ ! -w $(ZIPREL) ]; \
then \
chmod 755 $(ZIPREL); \
fi
# zip .png files without compression
# do not zip up Makefiles, or any files ending with '~'
@echo " >> creating application zip $(ZIPREL)/$(APPNAME).zip"
@if [ -d $(SOURCEREL)/$(APPNAME) ]; \
then \
(zip -0 -r "$(ZIPREL)/$(APPNAME).zip" . -i \*.png $(ZIP_EXCLUDE)); \
(zip -9 -r "$(ZIPREL)/$(APPNAME).zip" . -x \*~ -x \*.png -x Makefile $(ZIP_EXCLUDE)); \
else \
echo "Source for $(APPNAME) not found at $(SOURCEREL)/$(APPNAME)"; \
fi
@echo "*** developer zip $(APPNAME) complete ***"
install: $(APPNAME)
@echo "Installing $(APPNAME) to host $(ROKU_DEV_TARGET)"
@$(CURL) -s -S -F "mysubmit=Install" -F "archive=@$(ZIPREL)/$(APPNAME).zip" -F "passwd=" http://$(ROKU_DEV_TARGET)/plugin_install | grep "<font color" | sed "s/<font color=\"red\">//"
pkg: ROKU_PKG_PASSWORD ?= "$(shell read -p "Roku packaging password: " REPLY; echo $$REPLY)"
pkg: install
@echo "*** Creating Package ***"
@echo " >> creating destination directory $(PKGREL)"
@if [ ! -d $(PKGREL) ]; \
then \
mkdir -p $(PKGREL); \
fi
@echo " >> setting directory permissions for $(PKGREL)"
@if [ ! -w $(PKGREL) ]; \
then \
chmod 755 $(PKGREL); \
fi
@echo "Packaging $(APPNAME) on host $(ROKU_DEV_TARGET)"
$(eval PKGFILE := $(shell $(CURL) -s -S -Fmysubmit=Package -Fapp_name=$(APPNAME)/$(VERSION) -Fpasswd=$(ROKU_PKG_PASSWORD) -Fpkg_time=`date +%s` "http://$(ROKU_DEV_TARGET)/plugin_package" | grep 'pkgs' | sed 's/.*href=\"\([^\"]*\)\".*/\1/' | sed 's#pkgs//##'))
@echo $(PKGFILE)
@if [ -z $(PKGFILE) ]; \
then \
echo "Package createion failed! Have you rekeyed your Roku?"; \
exit 1; \
fi
$(eval PKGFULLPATH := $(PKGREL)/$(APPTITLE)_$(PKGFILE))
@echo "Downloading package to " $(PKGFULLPATH)
http -v --auth-type digest --auth $(ROKU_DEV_USERNAME):$(ROKU_DEV_PASSWORD) -o $(PKGFULLPATH) -d http://$(ROKU_DEV_TARGET)/pkgs/$(PKGFILE)
@if [ ! -f ""$(PKGFULLPATH)"" ]; \
then \
echo "Package download failed! File does not exist: " $(PKGFULLPATH); \
exit 2; \
fi
@echo "*** Package $(APPTITLE) complete ***"
remove:
@echo "Removing $(APPNAME) from host $(ROKU_DEV_TARGET)"
@$(CURL) -s -S -F "mysubmit=Delete" -F "archive=" -F "passwd=" http://$(ROKU_DEV_TARGET)/plugin_install | grep "<font color" | sed "s/<font color=\"red\">//"