Change deadd to a binary package

This commit is contained in:
Sravan Balaji
2024-04-27 02:31:56 +00:00
parent fe0087c765
commit dbf9e7ba5c
4 changed files with 27 additions and 35 deletions

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A notification daemon and center"
HOMEPAGE="https://github.com/phuhl/linux_notification_center"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64"
S=${WORKDIR}
DEPEND="
net-misc/wget
"
pkg_setup() {
cd ${S}
wget https://github.com/phuhl/linux_notification_center/releases/download/${PV}/deadd-notification-center
}
src_install() {
dobin deadd-notification-center
}