diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-05-03 09:36:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-05 05:37:16 +0100 |
commit | 67ae48b33ff6bbc32814f726911efe116c2d54b8 (patch) | |
tree | 83dcf0fc13428ac4c02da27589c8f149afb7cb44 /x11-misc | |
parent | gui-libs/xdg-desktop-portal-wlr: EAPI 8, fix subslot (diff) | |
download | gentoo-67ae48b33ff6bbc32814f726911efe116c2d54b8.tar.gz gentoo-67ae48b33ff6bbc32814f726911efe116c2d54b8.tar.bz2 gentoo-67ae48b33ff6bbc32814f726911efe116c2d54b8.zip |
x11-misc/rofi-calc: add 2.2.0
Signed-off-by: Michael Vetter <jubalh@iodoru.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/rofi-calc/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/rofi-calc/rofi-calc-2.2.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/rofi-calc/Manifest b/x11-misc/rofi-calc/Manifest index 916e7b8d7309..36ea19b3fde4 100644 --- a/x11-misc/rofi-calc/Manifest +++ b/x11-misc/rofi-calc/Manifest @@ -1 +1,2 @@ DIST rofi-calc-2.0.0.tar.gz 1695125 BLAKE2B d76c304724b0f3326a8bd26ab2c7eaed5f77f3b6d07ddc97570a1fb28d56504d98ac9ab66411290cb548b760bd3231a729dfc470e748a8447e323d1b290f677c SHA512 298f9983dbd140f5aee5b3799b165500eae100f3f5744ba07914b962faf01661dee0f5f4c9c12a07a4e210b6115ac6fb377d9fa9a7e64ef5a19600e9f55cd478 +DIST rofi-calc-2.2.0.tar.gz 1695821 BLAKE2B ab91e17c2baa854e76f593626b774390b5bdd57c78419c16981371f1e4be64cee0a38845dcd93998741ceeac462a1158af08519692c65a04a22418aa7026dc89 SHA512 7eedb5c7be97f42a1683cabdf0745c28d2a4f123f02e7cf2bf5a44cf851271b5bdc31f7622f4f30d086ecdcbcc7e4d62d3550b8c5b8ceebcdaca362e8d09a68d diff --git a/x11-misc/rofi-calc/rofi-calc-2.2.0.ebuild b/x11-misc/rofi-calc/rofi-calc-2.2.0.ebuild new file mode 100644 index 000000000000..b7c73415246d --- /dev/null +++ b/x11-misc/rofi-calc/rofi-calc-2.2.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Do live calculations in rofi!" +HOMEPAGE="https://github.com/svenstaro/rofi-calc" +SRC_URI="https://github.com/svenstaro/rofi-calc/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + x11-misc/rofi + >=sci-libs/libqalculate-2.0 +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf -i +} |