diff options
Diffstat (limited to 'app-emacs/async/async-1.9.3.ebuild')
-rw-r--r-- | app-emacs/async/async-1.9.3.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app-emacs/async/async-1.9.3.ebuild b/app-emacs/async/async-1.9.3.ebuild new file mode 100644 index 000000000000..c59fc3c4339d --- /dev/null +++ b/app-emacs/async/async-1.9.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +MY_P="emacs-async-${PV}" +DESCRIPTION="Simple library for asynchronous processing in Emacs" +HOMEPAGE="https://github.com/jwiegley/emacs-async" +SRC_URI="https://github.com/jwiegley/emacs-async/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${MY_P}" +SITEFILE="50${PN}-gentoo.el" +DOCS="README.md" + +src_compile() { + elisp-compile *.el + elisp-make-autoload-file +} |