Files
guru/net-mail/goimapnotify/goimapnotify-9999.ebuild
Gregor Feierabend 82b4cbb983 net-mail/goimapnotify: unkeyword 9999 for ~amd64
Signed-off-by: Gregor Feierabend <gf.devel@pm.me>
2026-06-15 11:23:27 +01:00

36 lines
792 B
Bash

# 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://gitlab.com/shackra/goimapnotify.git"
HOMEPAGE="https://gitlab.com/shackra/goimapnotify"
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_TAG=$(git describe --tags)
GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
LDFLAGS="-X main.commit=${GIT_COMMIT} -X main.gittag=${GIT_TAG} -X main.branch=${GIT_BRANCH}"
ego build -ldflags "${LDFLAGS}" -gcflags '-N -l' ./cmd/goimapnotify
}
src_install() {
dobin goimapnotify
}