Skip to content

Instantly share code, notes, and snippets.

@amiad
Created September 5, 2017 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amiad/3c073d3a8a002547c92d3e39e225c12a to your computer and use it in GitHub Desktop.
Save amiad/3c073d3a8a002547c92d3e39e225c12a to your computer and use it in GitHub Desktop.
jaxx-1.2.29 PKGBUILD
# Contributor: Hugo Ideler <hugo at hugoideler dot com>
pkgname=jaxx
pkgver=1.2.29
pkgrel=1
epoch=
pkgdesc="Multi-chain cryptocurrency wallet"
arch=('x86_64')
# ^ not tested on other platforms
url="https://jaxx.io/"
license=('unknown')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://jaxx.io/files/${pkgver}/Jaxx-v${pkgver}_linux-x64.tar.gz" "jaxx.desktop")
noextract=()
sha256sums=('201e9b3278220d1e97fb1321e5271ba1dc126264aa5c79c0cd17ce2c2df7cae5'
'4e4323a365c878378b5ed019a4a78e0cd94148abbc649e0972414ef38e9f7139')
validpgpkeys=()
prepare() {
true
}
build() {
true
}
check() {
true
}
package() {
mkdir -p $pkgdir/opt/$pkgname
cp -a Jaxx-vv${pkgver}_linux-x64/jaxx-assets/* $pkgdir/opt/$pkgname
mkdir -p $pkgdir/usr/bin
ln -s ../../opt/$pkgname/Jaxx $pkgdir/usr/bin/$pkgname
install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
}
# vim: et
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment