Browse Source

Add rpm to Linux build outputs.

- Explicitly defining `depends` for the defaults is not necessary as of
  electron-userland/electron-builder#502
pull/223/head
Sebastian Schulze 9 years ago
parent
commit
da4833db0d
No known key found for this signature in database
GPG Key ID: 7EC07325206E3E55
  1. 1
      .travis.yml
  2. 5
      package.json

1
.travis.yml

@ -29,6 +29,7 @@ before_install:
sudo apt-get update -qq; sudo apt-get update -qq;
sudo apt-get install -qq libxml2-dev; sudo apt-get install -qq libxml2-dev;
sudo apt-get install -qq libappindicator1; sudo apt-get install -qq libappindicator1;
sudo apt-get install -qq rpm;
fi fi
install: install:
- git config --global core.autocrlf input - git config --global core.autocrlf input

5
package.json

@ -91,13 +91,10 @@
"target": [ "target": [
"AppImage", "AppImage",
"deb", "deb",
"rpm",
"zip", "zip",
"tar.gz" "tar.gz"
], ],
"depends": [
"libappindicator1",
"libnotify-bin"
],
"icon": "./resources/Icon.png" "icon": "./resources/Icon.png"
} }
}, },

Loading…
Cancel
Save