Package Details: browser-plugin-trezor 1.0.5-3

Package Base: browser-plugin-trezor
Description: The Browser Plugin for the first Hardware Bitcoin Wallet.
Upstream URL: https://mytrezor.com/
Category: lib
Licenses: unknown
Provides: browser-plugin-trezor
Submitter: xeroc
Maintainer: xeroc
Last Packager: xeroc
Votes: 3
First Submitted: 2014-05-11 16:03
Last Updated: 2015-01-15 20:48

Latest Comments

Comment by turborob

2015-06-23 01:01

Got it to build and it's working. Thanks xeroc.

Comment by turborob

2015-06-23 00:59

Comment by turborob

2015-03-12 17:05

Any ideas of this PKG is working? Got my Trezor coming in the mail!

Comment by bandroidx

2015-01-12 15:33

@borja the PKGBUILD you linked doesnt exist.

Comment by borja

2015-01-11 17:54

This PKGBUILD still doesn't work. The following home works nicely due to the new pacman 4.2 upgrade:

https://github.com/borjiviri/archlinux/blob/master/aur/browser-plugin-trezor/PKGBUILD

Comment by Flink

2014-05-19 11:36

@xeroc You’re welcome :)

Comment by xeroc

2014-05-16 17:38

@Fink:
Awesome. Its even easier as I expected.

My first version only used i686 and that worked. Could try 64 bit version :-(
Thanks for the help.

Comment by Flink

2014-05-16 17:25

Your PKGBUILD does not work at all :(
I modified it and it should work well on both architectures now:

# Maintainer: Fabian Schuh <mail@xeroc.org>
pkgname=browser-plugin-trezor
pkgver=1.0.5
pkgrel=2
pkgdesc="The Browser Plugin for the first Hardware Bitcoin Wallet."
arch=( 'i686' 'x86_64' )
url="https://mytrezor.com/"
license=('unknown')
depends=()
makedepends=('rpmextract')
options=('emptydirs')
if test "$CARCH" == "i686"; then
source=("https://github.com/trezor/webwallet-data/raw/master/plugin/$pkgver/$pkgname-$pkgver.i386.rpm")
sha256sums=('41bc847ada77cd169f0c753c1e3f052216b2bbbbe30893db05f0a511e8675e18')
else
source=("https://github.com/trezor/webwallet-data/raw/master/plugin/$pkgver/$pkgname-$pkgver.x86_64.rpm")
sha256sums=('4df79f0c122adc44590d4dde82a31899a59307f24e285d2c980780f0b966fa5d')
fi

package() {
cp -a "$srcdir/lib" "$pkgdir"
cp -a "$srcdir/usr" "$pkgdir"
}

Comment by xeroc

2014-05-11 16:03

My first AUR PKGBUILD package. Tweaking might be neccesary!