mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 14:38:43 +02:00
35 lines
688 B
Bash
35 lines
688 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit elisp
|
|
|
|
DESCRIPTION="GNU Emacs all-the-icons integration for treemacs"
|
|
HOMEPAGE="https://github.com/Alexander-Miller/treemacs/"
|
|
SRC_URI="https://github.com/Alexander-Miller/treemacs/archive/${PV}.tar.gz
|
|
-> treemacs-${PV}.gh.tar.gz"
|
|
S="${WORKDIR}/treemacs-${PV}/src/extra"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
app-emacs/all-the-icons
|
|
app-emacs/treemacs
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
SITEFILE="50${PN}-gentoo.el"
|
|
|
|
src_compile() {
|
|
elisp-compile "${PN}.el"
|
|
}
|
|
|
|
src_install() {
|
|
elisp-install "${PN}" "${PN}.el"{,c}
|
|
elisp-make-site-file "${SITEFILE}"
|
|
}
|