blob: 8f58a0dcd1f8a85f1448aafe6087e8b4644c1293 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop xdg
MY_P="tabby-${PV}-linux"
DESCRIPTION="A terminal for a more modern age"
HOMEPAGE="https://tabby.sh"
SRC_URI="
amd64? ( https://github.com/Eugeny/tabby/releases/download/v${PV}/${MY_P}-x64.tar.gz )
arm? ( https://github.com/Eugeny/tabby/releases/download/v${PV}/${MY_P}-armhf.tar.gz )
"
# This needs to be adjusted to allow for arm
S="${WORKDIR}/${MY_P}-x64"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm"
DEPEND="
|| (
>=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
media-libs/mesa
x11-libs/gdk-pixbuf
x11-libs/gtk+
x11-libs/libdrm
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXfixes
x11-libs/libxkbcommon
x11-libs/libXrandr
x11-libs/libxshmfence
x11-libs/pango
"
QA_PREBUILT="/opt/${PN}/*"
src_prepare(){
default
}
src_install(){
insinto /opt/"${PN}"
doins -r "${S}"/*
dosym ../../opt/"${PN}"/tabby "${EPREFIX}"/usr/bin/tabby
fperms +x /opt/"${PN}"/tabby
make_desktop_entry "/opt/${PN}/tabby %U" "Tabby" "tabby" \
"GNOME;GTK;Utility;" \
"GenericName=Tabby\n\nStartupNotify=true\nStartupWMClass=tabby"
# No icons for now
#doicon ../tabby.svg
#doicon ../tabby.ico
#for i in {16,24,32,48,64,72,96,128,512}; do
# doicon -s "${i}" ../tabby-"${i}".png
#done
}
|