31 lines
676 B
Bash
31 lines
676 B
Bash
|
# Copyright 1999-2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
NEED_EMACS="24.1"
|
||
|
|
||
|
inherit elisp-common git-r3
|
||
|
|
||
|
DESCRIPTION="Convenient gensyms for defmacro (Emacs Lisp)"
|
||
|
HOMEPAGE="https://gitlab.com/akater/defmacro-gensym/-/blob/master/defmacro-gensym.org"
|
||
|
EGIT_REPO_URI="https://gitlab.com/akater/defmacro-gensym.git"
|
||
|
EGIT_BRANCH="master"
|
||
|
|
||
|
LICENSE="Unlicense"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
DOCS="README.org"
|
||
|
|
||
|
export ORG_IMMUTABLE_SOURCES_DIRECTORY="${SITEETC}/${PN}"
|
||
|
|
||
|
pkg_postinst() {
|
||
|
elisp-site-regen
|
||
|
if declare -f readme.gentoo_print_elog >/dev/null; then
|
||
|
readme.gentoo_print_elog
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
pkg_postrm() {
|
||
|
elisp-site-regen
|
||
|
}
|