Got it to build and it's working. Thanks xeroc.
Search Criteria
Package Details: browser-plugin-trezor 1.0.5-3
Package Actions
| Package Base: | browser-plugin-trezor |
|---|---|
| Description: | The Browser Plugin for the first Hardware Bitcoin Wallet. |
| Upstream URL: | https://mytrezor.com/ |
| Category: | lib |
| Licenses: | |
| Provides: | |
| 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
Comment by turborob
Comment by turborob
Any ideas of this PKG is working? Got my Trezor coming in the mail!
Comment by bandroidx
@borja the PKGBUILD you linked doesnt exist.
Comment by borja
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
@xeroc You’re welcome :)
Comment by xeroc
@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
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
My first AUR PKGBUILD package. Tweaking might be neccesary!