summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3103ce88cb67d8c954937b8373b2c666542a1140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>

pkgname=spl-token-wallet
_pkgver="0.2.5"
pkgver="v${_pkgver}"
pkgrel=1
pkgdesc="Example Solana wallet with support for SPL tokens and Serum integration."
url='https://github.com/project-serum/spl-token-wallet'
arch=(any)
license=('Apache')
depends=('chromium')
makedepends=('yarn')
source=("${pkgname}::git+${url}#tag=$_pkgver")
sha512sums=('SKIP')

build() {
  cd "$srcdir/${pkgname}/"
  yarn add "react-scripts@4.0.3"
  yarn build:extension
  rm "${srcdir}/yarn.lock"
}

package() {
  ls $pkgdir
}