blob: 603fc3d92a9957a003589b7b9fe63a4f682695c1 (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp git-r3
DESCRIPTION="Highlighting indentation for Emacs"
HOMEPAGE="https://github.com/antonj/Highlight-Indentation-for-Emacs"
EGIT_REPO_URI="https://github.com/antonj/Highlight-Indentation-for-Emacs/"
EGIT_BRANCH="master"
EGIT_CHECKOUT_DIR="${WORKDIR}/${P}"
S="${EGIT_CHECKOUT_DIR}"
LICENSE="GPL-2+"
SLOT="0"
SITEFILE="50highlight-indentation-gentoo.el"
DOCS=( README.org )
src_compile() {
elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
elisp_src_compile
}
|