blob: 001816a9436eec078a9decd29d9f138a7623509a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PROJECT = html5UIDashboard
VERSION := 0.0.1
PACKAGE = $(PROJECT)-$(VERSION)
INSTALL_FILES = $(PROJECT).wgt
INSTALL_DIR = ${DESTDIR}/opt/usr/apps/.preinstallWidgets
wgtPkg:
zip -r $(PROJECT).wgt components config.xml css icon.png index.html js
install:
@echo "Installing Dashboard, stand by..."
mkdir -p $(INSTALL_DIR)/
cp $(PROJECT).wgt $(INSTALL_DIR)/
dist:
tar czf ../$(PACKAGE).tar.bz2 .
|