Files
guru/app-text/notekit/notekit-0.2.0.ebuild
Nguyen Dinh Dang Duong 1587085824 app-text/notekit: minor fixes
Signed-off-by: Nguyen Dinh Dang Duong <dangduong31205@gmail.com>
2025-11-20 20:20:40 +07:00

36 lines
665 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Write your notes in instantly-formatted Markdown"
HOMEPAGE="https://github.com/blackhole89/notekit/"
SRC_URI="https://github.com/blackhole89/notekit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-cpp/gtkmm:3.0
dev-cpp/gtksourceviewmm:3.0
virtual/zlib
media-libs/fontconfig
dev-libs/jsoncpp
dev-libs/tinyxml2
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-build/meson
dev-build/ninja
"
src_configure() {
local emesonargs=(
"-Dclatexmath=false"
)
meson_src_configure
}