mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
18 lines
696 B
Makefile
18 lines
696 B
Makefile
all:
|
|
make build
|
|
make install
|
|
|
|
install:
|
|
zip -r application_office.zip . -x "lib/vendor/*"
|
|
mv application_office.zip ../../../dist/data/state/plugins/
|
|
|
|
build:
|
|
make deps_zeta
|
|
|
|
deps_zeta:
|
|
[ -d lib/lowa ] || mkdir lib/lowa
|
|
curl https://cdn.zetaoffice.net/zetaoffice_latest/soffice.js > lib/lowa/soffice.js
|
|
curl https://cdn.zetaoffice.net/zetaoffice_latest/soffice.wasm > lib/lowa/soffice.wasm.br
|
|
curl https://cdn.zetaoffice.net/zetaoffice_latest/soffice.data.js.metadata > lib/lowa/soffice.data.js.metadata
|
|
curl https://cdn.zetaoffice.net/zetaoffice_latest/soffice.data > lib/lowa/soffice.data.br
|
|
curl https://zetaoffice.net/demos/standalone/assets/vendor/zetajs/zeta.js > lib/lowa/zeta.js
|