summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6c65f17af4d13e204c7ca1749d9173555af5d2d9 (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
27
28
29
30
# Maintainer: Mikescher <aur@mikescher.com>
# Repo:       https://github.com/Mikescher/firefox-sync-client

pkgname=ffsclient-git
pkgver=1.6.0
pkgrel=1

pkgdesc="A cli to access firefox-sync data"

url="https://github.com/Mikescher/firefox-sync-client"
license=('Apache')

makedepends=('go' 'git')

arch=('any')

source=("$pkgname::git+https://github.com/Mikescher/firefox-sync-client")

sha256sums=('SKIP')

build() {
  cd "$pkgname"
  go build -o ffsclient  cmd/ffsclient/main.go
}

package()
{
  install -D -m755 "$pkgname/ffsclient" "${pkgdir}/usr/bin/ffsclient"
}