blob: a3e30e7249fe5be2ac1b8c3b3378b0e270c55545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
EAPI=7
inherit desktop
DESCRIPTION="Messaging app that combines common web applications into one"
HOMEPAGE="https://getferdi.com/"
SRC_URI="https://github.com/getferdi/ferdi/releases/download/v${PV}/${P}.tar.gz"
S="${WORKDIR}"
LICENSE="GPL-3.0+"
SLOT="0"
KEYWORDS="amd64"
src_install() {
dodir /opt
cp -R "${S}/${P}/" "${D}/opt/ferdi/" || die "Install failed!"
dodir /usr/bin
ln -s /opt/ferdi/ferdi "${D}/usr/bin/ferdi"
make_desktop_entry ferdi Ferdi
}
|