# Copyright 2026 Aubrey # Distributed under the terms of the BSD-2-Clause License EAPI=8 inherit git-r3 cargo BDEPEND="dev-lang/rust-bin" DESCRIPTION="A simple Unix-style reminder utility" HOMEPAGE="https://codeberg.org/kelseythedreamer/due-notes" EGIT_REPO_URI="https://codeberg.org/kelseythedreamer/due-notes.git" LICENSE="BSD-2" SLOT="0" KEYWORDS="" RDEPEND="" src_unpack() { git-r3_src_unpack } src_configure() { : } src_compile() { export CARGO_HOME="${WORKDIR}/cargo_home" mkdir -p "${CARGO_HOME}" || die cargo build --release || die "cargo build failed" } src_install() { dobin target/release/due dodoc README.md }