mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
Manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
53 lines
1.0 KiB
Bash
53 lines
1.0 KiB
Bash
# Copyright 2019-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker xdg
|
|
|
|
DESCRIPTION="a markdown editor,markdown reader."
|
|
HOMEPAGE="https://typora.io"
|
|
SRC_URI="
|
|
amd64? ( https://typora.io/linux/typora_${PV}_amd64.deb )
|
|
arm64? ( https://typora.io/linux/typora_${PV}_arm64.deb )
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="Typora-EULA"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64 ~arm64"
|
|
|
|
RESTRICT="bindist mirror"
|
|
|
|
RDEPEND="
|
|
|| (
|
|
>=app-accessibility/at-spi2-core-2.46.0:2
|
|
( app-accessibility/at-spi2-atk dev-libs/atk )
|
|
)
|
|
dev-libs/nss
|
|
media-libs/alsa-lib
|
|
net-print/cups
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf
|
|
x11-libs/gtk+:3
|
|
x11-libs/pango
|
|
x11-libs/libdrm
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXcursor
|
|
x11-libs/libXdamage
|
|
x11-libs/libXfixes
|
|
x11-libs/libXi
|
|
x11-libs/libXrandr
|
|
x11-libs/libXrender
|
|
x11-libs/libXtst
|
|
x11-libs/libXScrnSaver
|
|
${DEPEND}"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
src_install() {
|
|
mv "${S}"/* "${ED}" || die
|
|
mv "${ED}/usr/share/doc/${PN//-bin}" "${ED}/usr/share/doc/${PF}" || die
|
|
}
|