diff options
Diffstat (limited to 'x11-plugins/birdtray/birdtray-1.6.ebuild')
-rw-r--r-- | x11-plugins/birdtray/birdtray-1.6.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-plugins/birdtray/birdtray-1.6.ebuild b/x11-plugins/birdtray/birdtray-1.6.ebuild new file mode 100644 index 0000000..835fbd3 --- /dev/null +++ b/x11-plugins/birdtray/birdtray-1.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils 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/qtx11extras:5=" + +S="${WORKDIR}/${PN}-RELEASE_${PV}" + +src_install() { + dobin "${BUILD_DIR}/${PN}" +} + +pkg_postinst() { + xdg_icon_cache_update +} +pkg_postrm() { + xdg_icon_cache_update +} |