123456789101112131415161718192021 |
- DESTDIR=./
- INSTALL_LOCATION=$(DESTDIR)/opt/pitaya
- ELECTRON_ARCH=x64
-
- ifeq ($(DEB_TARGET_ARCH), i386)
- ELECTRON_ARCH=ia32
- endif
-
- all: build
-
- build:
- apt-get update
- apt-get install --yes --no-install-recommends curl ca-certificates
- curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
- apt-get install --yes nodejs
- npm install --ignore-scripts
- ARCH=$(ELECTRON_ARCH) npm run build
-
- install:
- mkdir -p $(INSTALL_LOCATION)
- cp -r build/pitaya-linux-$(ELECTRON_ARCH)/* $(INSTALL_LOCATION)/
|