Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Change RPM builds architecture to 'x86_64' #4723

Merged
merged 1 commit into from
Oct 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ Please see the [Building on Windows wiki entry](https://github.com/brave/browser

* `apt-get install libgnome-keyring-dev build-essential`

OR

* `dnf install libgnome-keyring-devel rpm-build`

## Installation

After installing the prerequisites:
Expand Down
1 change: 1 addition & 0 deletions docs/buildingReleases.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Check virus scan: https://www.virustotal.com/en/
```
./node_modules/.bin/webpack
CHANNEL=dev npm run build-package
CHANNEL=dev npm run build-installer
tar -jcvf Brave.tar.bz2 ./Brave-linux-x64
```

Expand Down
4 changes: 2 additions & 2 deletions docs/linuxInstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ wget -O brave.deb https://laptop-updates.brave.com/latest/mint64
sudo dpkg -i ./brave.deb
```

## Fedora AMD64:
## Fedora x86_64:

```
sudo dnf install lsb
wget -O brave.rpm https://laptop-updates.brave.com/latest/fedora64
sudo rpm -i ./brave.rpm
sudo dnf install ./brave.rpm
```

## OpenSUSE AMD64:
Expand Down
4 changes: 2 additions & 2 deletions tools/buildInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if (isDarwin) {
}, (e) => console.log(`No dice: ${e.message}`))
} else if (isLinux) {
console.log('Install with sudo dpkg -i dist/brave_' + VersionInfo.braveVersion + '_amd64.deb')
console.log('Or install with sudo rpm -i dist/brave_' + VersionInfo.braveVersion + '.amd64.rpm')
console.log('Or install with sudo dnf install dist/brave_' + VersionInfo.braveVersion + '.x86_64.rpm')
cmds = [
// .deb file
'electron-installer-debian' +
Expand All @@ -94,7 +94,7 @@ if (isDarwin) {
'electron-installer-redhat' +
' --src Brave-linux-x64/' +
' --dest dist/' +
' --arch amd64' +
' --arch x86_64' +
' --config res/linuxPackaging.json',
// .tar.bz2 file
'tar -jcvf dist/Brave.tar.bz2 ./Brave-linux-x64'
Expand Down