Skip to content

Commit

Permalink
update for easel 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus committed Sep 30, 2016
1 parent ef0c0c0 commit cc18a89
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: clean

VERSION=0.2.6
VERSION=0.2.7
BUILD=1

ARCH=$(shell uname -m)
Expand Down Expand Up @@ -36,16 +36,15 @@ $(NATIVE_EXT): build/iris-lib/iris.js build
build/node: build
cp $(shell which node) build/

build/iris-lib/iris.js: EaselDriver-0.2.6.pkg build
build/iris-lib/iris.js: EaselDriver-$(VERSION).pkg build
rm -rf tempdir
mkdir tempdir
7z x -otempdir EaselDriver-0.2.6.pkg
7z x -otempdir EaselDriver-$(VERSION).pkg
mkdir -p build/iris-lib
(cd build/iris-lib && gunzip <../../tempdir/IrisLib-0.2.6.pkg/Payload | cpio -i)
(cd build/iris-lib && gunzip <../../tempdir/IrisLib-$(VERSION).pkg/Payload | cpio -i)
rm -rf tempdir
build:
mkdir -p build

clean:
rm -rf tempdir build $(OUT)

0 comments on commit cc18a89

Please sign in to comment.