Template app.

This commit is contained in:
2023-08-24 23:41:18 +01:00
parent 9fa8fba957
commit e9cc8deff8
7 changed files with 814 additions and 0 deletions

25
src/Makefile Normal file
View File

@@ -0,0 +1,25 @@
#########################################################################
# Simple makefile for packaging VideoCanvas test channel
#
# 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)
##########################################################################
APPNAME = BanvorFlower
VERSION = 1.0
ZIP_EXCLUDE= -x \*.pkg -x storeassets\* -x keys\* -x \*/.\* -x */*.xcf
APPS_ROOT_DIR := $(shell git rev-parse --show-toplevel)
include $(APPS_ROOT_DIR)/scripts/app.mk