diff options
author | axtlos <rose@pinkro.se> | 2025-07-29 23:16:02 +0200 |
---|---|---|
committer | axtlos <rose@pinkro.se> | 2025-07-29 23:16:02 +0200 |
commit | 8211d199a96c73c053aa0f4aabe6db374c085260 (patch) | |
tree | 6e4cb21719077e3c305d6d192462305e5a2851a5 /gui-apps | |
parent | af3b2319f1f6a8a575c914d51cb4cfc477b3834b (diff) | |
download | seeds-8211d199a96c73c053aa0f4aabe6db374c085260.tar.gz seeds-8211d199a96c73c053aa0f4aabe6db374c085260.tar.bz2 |
gui-apps/autodarkmode: Add package
Diffstat (limited to 'gui-apps')
-rw-r--r-- | gui-apps/autodarkmode/autodarkmode-0.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gui-apps/autodarkmode/autodarkmode-0.1.ebuild b/gui-apps/autodarkmode/autodarkmode-0.1.ebuild new file mode 100644 index 0000000..03e4793 --- /dev/null +++ b/gui-apps/autodarkmode/autodarkmode-0.1.ebuild @@ -0,0 +1,36 @@ +EAPI=8 + +inherit meson git-r3 + +DESCRIPTION="Automatically execute scripts based on current sunrise and sunset" +HOMEPAGE="https://git.pinkro.se/autodarkmode.git" + +EGIT_REPO_URI="git://git.pinkro.se/autodarkmode.git" +EGIT_SUBMOULDES=( "*" ) + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+geoclue" + +RDEPEND=" + >=dev-libs/glib-2.78.6 +" + +DEPEND=" + ${RDEPEND} +" + +BDEPEND=" + >=dev-build/meson-0.60.0 + virtual/pkgconfig +" + +BDEPEND+="geoclue? ( >=app-misc/geoclue-2.7.2 )" + +src_configure() { + local emesonargs=( + $(meson_feature geoclue gclue_support) + ) + meson_src_configure +} |