-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile
98 lines (84 loc) · 3.43 KB
/
Makefile
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
#########################################################################
# Simple makefile for packaging Roku Audio Test Application example
#
# Makefile Usage:
# > make
# > make install
# > make remove
#
# 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 = ..
DISTREL = ../dist
APPNAME = brstest
VERMAJOR=$(shell cat manifest|grep ^major_version|cut -d '=' -f 2)
VERMINOR=$(shell cat manifest|grep ^minor_version|cut -d '=' -f 2)
VERSUBMINOR=$(shell cat manifest|grep ^subminor_version|cut -d '=' -f 2)
VERSION = $(VERMAJOR).$(VERMINOR).$(VERSUBMINOR)
.PHONY: all brstest
brstest:
@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
@echo " >> creating application zip $(ZIPREL)/$(APPNAME).zip"
@if [ -d $(SOURCEREL)/$(APPNAME) ]; \
then \
(zip -9 -r "$(ZIPREL)/$(APPNAME).zip" . -x \*.svn\* ); \
(zip -d "$(ZIPREL)/$(APPNAME).zip" Makefile); \
else \
echo "Source for $(APPNAME) not found at $(SOURCEREL)/$(APPNAME)"; \
fi
@echo "*** developer zip $(APPNAME) complete ***"
install: brstest
@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\">//"
dist: brstest
@echo "Creating distributables for $(APPNAME)"
@echo " >> creating destination directory $(DISTREL)"
@if [ ! -d $(DISTREL) ]; \
then \
mkdir -p $(DISTREL); \
fi
cp "$(ZIPREL)/$(APPNAME).zip" "$(DISTREL)/$(APPNAME)_v$(VERSION).zip"
zip -u "$(DISTREL)/$(APPNAME)_v$(VERSION).zip" Makefile
cp source/brstest.brs "$(DISTREL)/brstest_v$(VERSION).brs"
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)"
@read -p "Password: " REPLY ; echo $$REPLY | xargs -i curl -s -S -Fmysubmit=Package -Fapp_name=$(APPNAME)/$(VERSION) -Fpasswd={} -Fpkg_time=`expr \`date +%s\` \* 1000` "http://$(ROKU_DEV_TARGET)/plugin_package" | grep '^<font face=' | sed 's/.*href=\"\([^\"]*\)\".*/\1/' | sed 's#pkgs/##' | xargs -i curl -s -S -o $(PKGREL)/$(APPNAME)_{} http://$(ROKU_DEV_TARGET)/pkgs/{}
@echo "*** Package $(APPNAME) 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\">//"