From b9719d2f468734de2d18a45e1bb0e046e766fe69 Mon Sep 17 00:00:00 2001 From: 1024x2 Date: Wed, 26 Mar 2025 22:35:55 +0000 Subject: app-editors/lite-xl: add 2.1.7 --- app-editors/lite-xl/lite-xl-2.1.7.ebuild | 42 ++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 app-editors/lite-xl/lite-xl-2.1.7.ebuild (limited to 'app-editors/lite-xl/lite-xl-2.1.7.ebuild') diff --git a/app-editors/lite-xl/lite-xl-2.1.7.ebuild b/app-editors/lite-xl/lite-xl-2.1.7.ebuild new file mode 100644 index 0000000..2616ec3 --- /dev/null +++ b/app-editors/lite-xl/lite-xl-2.1.7.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg + +DESCRIPTION="A extensible text editor written in C, and Lua, adapted from lite" +HOMEPAGE="https://lite-xl.com/en/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lite-xl/lite-xl.git" +else + SRC_URI="https://github.com/lite-xl/lite-xl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-lang/lua:5.4 + dev-libs/libpcre2 + media-libs/freetype:2 + media-libs/libsdl2[video] +" + +DEPEND="${RDEPEND}" + +src_configure() { + local emesonargs=( + -Duse_system_lua=true + ) + meson_src_configure +} + +src_install() { + meson_src_install + mv "${D}/usr/share/doc/lite-xl" "${D}/usr/share/doc/${P}" || die +} -- cgit v1.2.3