blob: b168315c6f921ce020baf538762b653a0d5c0e20 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils desktop xdg-utils
DESCRIPTION="Birdtray is a free system tray notification for new mail for Thunderbird"
HOMEPAGE="https://github.com/gyunaev/birdtray"
SRC_URI="https://github.com/gyunaev/${PN}/archive/RELEASE_${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-db/sqlite
dev-qt/qtcore:5=
dev-qt/qtwidgets:5=
dev-qt/qtx11extras:5="
S="${WORKDIR}/${PN}-RELEASE_${PV}"
src_install() {
dobin "${BUILD_DIR}/${PN}"
make_desktop_entry "${PN}"
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|