blob: 8889bd4bfe76e220cafa4d6f206bc1db0d26ee16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PROJECT = html5UINav
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 images index.html js templates
install:
@echo "Installing Navigation, stand by..."
mkdir -p $(INSTALL_DIR)/
cp $(PROJECT).wgt $(INSTALL_DIR)/
dist:
tar czf ../$(PACKAGE).tar.bz2 .
|