Skip to content

Commit

Permalink
Create .deb package (locally)
Browse files Browse the repository at this point in the history
  • Loading branch information
joereynolds committed Jun 16, 2018
1 parent 535594e commit 57fdb0a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/packaging.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Creating a .deb package

You need `electron-packager` and `electron-installer-debian` installed.

```
npm install -g electron-package electron-install-debian
```

Now run the following from the root of fanbox:

```
electron-package . --out dist/
mkdir dist/packages/
electron-installer-debian --src dist/fanbox-linux-x64/ --arch amd64 --dest dist/packages
```

That will create a `.deb` file in the `dist/packages` directory.

0 comments on commit 57fdb0a

Please sign in to comment.