blob: 53ab66cf66fd3bf8edbecd0d0ef46a4f7bf2239f (
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
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module git-r3
DESCRIPTION="Execute scripts on IMAP mailbox changes using IDLE, golang version"
EGIT_REPO_URI="https://jardin.jorgearaya.dev/z39RJHSHs166S5kr8Qstj6kd1LFah.git"
HOMEPAGE="https://radicle.network/nodes/jardin.jorgearaya.dev/rad:z39RJHSHs166S5kr8Qstj6kd1LFah"
LICENSE="GPL-3 MIT MPL-2.0 BSD BSD-2 Apache-2.0"
SLOT="0"
src_unpack() {
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
GIT_COMMIT=$(git rev-parse HEAD)
GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
LDFLAGS="-X main.commit=${GIT_COMMIT} -X main.branch=${GIT_BRANCH}"
ego build -ldflags "${LDFLAGS}" -gcflags '-N -l' ./cmd/goimapnotify
}
src_install() {
dobin goimapnotify
}
|