blob: bc2e41ba348571bd0476d0d0be38ef31fa8b1575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake desktop xdg-utils
DESCRIPTION="Fast and usable calculator for power users"
HOMEPAGE="https://speedcrunch.org/"
SRC_URI="https://bitbucket.org/heldercorreia/${PN}/get/release-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/heldercorreia-speedcrunch-ea93b21f9498/src"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qthelp:5
dev-qt/qtwidgets:5
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-appdata.patch" )
src_install() {
use doc && local HTML_DOCS=( ../doc/build_html_embedded/. )
cmake_src_install
doicon -s scalable ../gfx/speedcrunch.svg
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|