blob: a07ea27bf25cd92c11c3e32ab8a1422f38e12b12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: David Barri <japgolly@gmail.com>
pkgname=atomicwallet
pkgver=2.67.3
pkgrel=1
pkgdesc="Atomic Wallet is a decentralized Cryptocurrency wallet that supports more than 500 coins and tokens, providing simplicity, safety, and convenience for its users."
arch=('x86_64')
url="https://atomicwallet.io"
license=('unknown')
source=("https://get.atomicwallet.io/download/atomicwallet-$pkgver.rpm")
sha256sums=('11183647c44621e7ed3e1451651e84ce94beb21bf68864a311988fb4a5fe73d7')
package() {
set -e
mv opt usr "$pkgdir"
cd "$pkgdir/usr"
mkdir bin
cd bin
ln -s "../../opt/Atomic Wallet/atomic" atomicwallet
}
|