updated build from html/php to nodejs

This commit is contained in:
Marc Wäckerlin
2016-01-18 14:04:03 +00:00
parent ba3eb0e3c6
commit 3945afca4c
30 changed files with 1741 additions and 25965 deletions

20
nodejs/makefile.am Normal file
View File

@@ -0,0 +1,20 @@
## @id $Id$
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
EXTRA_DIST = servicedock.js package.json.in node_modules public routes sockets views
nodejsdir = ${pkgdatadir}/nodejs
install-data-hook:
test -d $(DESTDIR)${nodejsdir} || mkdir -p $(DESTDIR)${nodejsdir}
chmod -R u+w $(DESTDIR)${nodejsdir}
cp -r . $(DESTDIR)${nodejsdir}
uninstall-local:
-chmod -R u+w $(DESTDIR)${nodejsdir}
-rm -rf $(DESTDIR)${nodejsdir}
MAINTAINERCLEANFILES = makefile.in

View File

@@ -1,6 +1,6 @@
{
"name": "servicedock",
"version": "0.0.1",
"name": "@PACKAGE_NAME@",
"version": "@PACKAGE_VERSION@",
"private": true,
"dependencies": {
"express": "~2.5.8",