summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2969c9ebae3bdea68bcc0ec6ed95aaa33e1858ad (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
pkgname=git-sendgmail-git
pkgver=r20.e322915
pkgrel=1
pkgdesc='Use git send-email with gmail via OAuth2'
arch=('x86_64')
url="https://github.com/google/gmail-oauth2-tools/tree/master/go/sendgmail"
license=('APACHE')
makedepends=('go')
source=("$pkgname::git+https://github.com/google/gmail-oauth2-tools")
sha256sums=('SKIP')
subdir="$pkgname/go/sendgmail"

pkgver() {
  cd "$subdir"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$subdir"
  rm -f go.mod
  go mod init github.com/google/gmail-oauth2-tools/go/sendgmail
  go mod tidy
}

build() {
  cd "$subdir"
  export CGO_CPPFLAGS="${CPPFLAGS}"
  export CGO_CFLAGS="${CFLAGS}"
  export CGO_CXXFLAGS="${CXXFLAGS}"
  export CGO_LDFLAGS="${LDFLAGS}"
  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
  export GO111MODULE=on
  go build -o sendgmail .
}

check() {
  cd "$subdir"
  go test ./...
}

package() {
  cd "$subdir"
  install -Dm755 sendgmail "$pkgdir"/usr/bin/sendgmail
}