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