This commit is contained in:
Gerben Jan Dijkman 2024-05-24 22:40:34 +02:00
parent 68b32f9b36
commit dfa42751e2
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST powersupply-0.9.0.tar.gz 13235 BLAKE2B 9ec5743daac0bef6684bdf38271c875fd2a92db246e8b790fd477dcf0fb08b40011083222c78af9ed7c8ee2d0dfacbb0a3b502f4294f21c5384c30a3eaa52cf3 SHA512 0fc4d71a8d3be0208b6a9e08472bf154ab1ef7d832f7e4ffb093ad20744f2cf1fcdf06c26a627618867839d67480d21254df216229fc8eca65845b415bac85ec

View File

@ -0,0 +1,44 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson gnome2-utils
DESCRIPTION="Graphical power_supply status tool for Linux mobile platforms"
HOMEPAGE="https://gitlab.com/MartijnBraam/powersupply/"
SRC_URI="https://gitlab.com/MartijnBraam/powersupply/-/archive/${PV}/powersupply-${PV}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~arm64 ~arm"
RDEPEND="
gui-libs/libhandy
"
DEPEND="
${RDEPEND}
"
src_configure() {
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}