blob: 2e2f39bf0dfb9a33ff3ac3088bc73321493ffe14 (
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 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop xdg
DESCRIPTION="a markdown editor,markdown reader."
HOMEPAGE="https://typora.io"
SRC_URI="https://typora.io/linux/Typora-linux-x64.tar.gz -> typora-${PV}-linux-x64.tar.gz"
LICENSE="Typora-EULA"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="
x11-libs/libXScrnSaver
${DEPEND}"
BDEPEND=""
QA_PREBUILT="*"
src_unpack() {
if [ ${A} != "" ]; then
unpack ${A}
fi
S="${WORKDIR}/bin/Typora-linux-x64/"
}
src_install() {
insinto /opt/
doins -r "${S}"
newicon "$S/resources/app/asserts/icon/icon_512x512@2x.png" "${PN}.png"
dosym ../../opt/Typora-linux-x64/Typora /usr/bin/Typora
fperms 0755 /opt/Typora-linux-x64/Typora
fperms 4755 /opt/Typora-linux-x64/chrome-sandbox
domenu "${FILESDIR}/Typora.desktop"
}
|