gentoo-zh/app-editors/typora/typora-1.7.6.ebuild
2023-11-15 08:43:35 +08:00

36 lines
634 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit unpacker xdg
DESCRIPTION="A truely minimal markdown editor."
HOMEPAGE="https://typora.io"
SRC_URI="https://download.typora.io/linux/typora_${PV}_amd64.deb"
LICENSE="typora"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror splitdebug"
RDEPEND="
x11-libs/libXScrnSaver
net-print/cups"
QA_PREBUILT="*"
src_unpack() {
unpack_deb typora_${PV}_amd64.deb
S="${WORKDIR}"
}
src_install() {
mv "${S}/usr" "${D}" || die
pushd "${D}/usr/share/doc" > /dev/null || die
mv ${PN} ${P} || die
popd > /dev/null || die
}