mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
gui-apps/swaync: Initial commit
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Jonas Frei <freijon@pm.me>
This commit is contained in:
1
gui-apps/swaync/Manifest
Normal file
1
gui-apps/swaync/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST swaync-0.4.tar.gz 3131182 BLAKE2B 22c1fcca55247fc1fe242c798e3c8cd6ad9af8be716f2849237c3ed14f1a9b68550cca6c3a34b5ab4e92e19afaf48c648d28f46c0b535dbb9def98a79b524dbe SHA512 e3394c913e0f06ad47c6062dbc60e885860bfaf2c095bb7c7f2011884f73b4c7308d5dc09969cf2570daca35950c378d6fdfdeb23b715a6115c2a44a97f437e0
|
||||
23
gui-apps/swaync/metadata.xml
Normal file
23
gui-apps/swaync/metadata.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<name>Jonas Frei</name>
|
||||
<email>freijon@pm.me</email>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
A simple notification daemon with a GTK gui for notifications
|
||||
and the control center
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="github">ErikReider/SwayNotificationCenter</remote-id>
|
||||
<bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="bash-completion">Install bash completions</flag>
|
||||
<flag name="fish-completion">Install fish completions</flag>
|
||||
<flag name="systemd">Install systemd .service file</flag>
|
||||
<flag name="scripting">Enable scripting feature</flag>
|
||||
<flag name="zsh-completion">Install zsh completions</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
44
gui-apps/swaync/swaync-0.4.ebuild
Normal file
44
gui-apps/swaync/swaync-0.4.ebuild
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson
|
||||
|
||||
DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
|
||||
HOMEPAGE="https://github.com/ErikReider/SwayNotificationCenter"
|
||||
SRC_URI="https://github.com/ErikReider/SwayNotificationCenter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/SwayNotificationCenter-${PV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="bash-completion fish-completion scripting systemd zsh-completion"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/glib
|
||||
dev-libs/gobject-introspection
|
||||
dev-libs/json-glib
|
||||
dev-libs/libgee
|
||||
dev-libs/wayland
|
||||
gui-libs/gtk-layer-shell
|
||||
gui-libs/libhandy
|
||||
sys-apps/dbus
|
||||
x11-libs/gtk+
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-lang/vala
|
||||
dev-util/meson
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_use bash-completion bash-completions)
|
||||
$(meson_use fish-completion fish-completions)
|
||||
$(meson_use scripting)
|
||||
$(meson_use systemd systemd-service)
|
||||
$(meson_use zsh-completion zsh-completions)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user