gui-apps/fnott: add 1.3.0

Signed-off-by: Leonardo Hernández Hernández <leohdz172@outlook.com>
This commit is contained in:
Leonardo Hernández Hernández
2022-08-07 16:13:05 -05:00
parent 3859f13a0b
commit c752ffe58a
2 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST fnott-1.2.1.tar.gz 377573 BLAKE2B ed167a7a8d069c75acc8cf7c8ad80afb88b2ed13f590b61f70cd6b8355c77ae25bd95f7401388dbf4650311e8514a9e0c52fa13f500eb18c4f9f0de79de78884 SHA512 7818a01893dd2e8ea7a55355981f83e2d358ce68e36af81fe062c05e1a3405662fb5e221a0509b7212c57ce431e3591d6e4c5d2a1242f2b76c48a00c66e23932
DIST fnott-1.3.0.tar.gz 380852 BLAKE2B ba1ef8210ec9ade6dbaa7a3f3e7ad6e283a8838b11e845e7dae481c0429e64984778a3add947b53a6c32be7c8ec630846c1fd7c2a99e56ec3126083a42787808 SHA512 701823cc50e8432b72e1b17ffb62cd3de7b7e6d08e571c2fbe301bd024820eb72dcb49d9d2e07cf62a81b27175072683dec54d9d8ac9fec0dda0cdf90a23d8c0

View File

@@ -0,0 +1,46 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Keyboard driven and lightweight Wayland notification daemon."
HOMEPAGE="https://codeberg.org/dnkl/fnott"
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/dnkl/fnott.git"
else
SRC_URI="https://codeberg.org/dnkl/fnott/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}"
KEYWORDS="~amd64"
fi
LICENSE="MIT ZLIB"
SLOT="0"
DEPEND="
x11-libs/pixman
media-libs/libpng
dev-libs/wayland
sys-apps/dbus
media-libs/fcft
media-libs/freetype
media-libs/fontconfig
"
RDEPEND="${DEPEND}
"
BDEPEND="
dev-util/wayland-scanner
dev-libs/wayland-protocols
app-text/scdoc
dev-libs/tllist
"
src_install() {
local DOCS=( CHANGELOG.md README.md LICENSE )
meson_src_install
rm -r "${ED}"/usr/share/doc/"${PN}" || die
}