Files
gentoo/dev-libs/tree-sitter-phpdoc/tree-sitter-phpdoc-0.1.8.ebuild
Michael Orlitzky 5c5c224fb2 dev-libs/tree-sitter-phpdoc: keyword 0.1.8 for ~amd64
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
2026-07-27 08:05:16 -04:00

22 lines
559 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit tree-sitter-grammar
DESCRIPTION="PHPDoc grammar for Tree-sitter"
HOMEPAGE="https://github.com/claytonrcarter/tree-sitter-phpdoc"
SRC_URI="https://github.com/claytonrcarter/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~riscv"
src_prepare() {
sed -e "s/VERSION := 0.0.1/VERSION := ${PV}/" \
-i Makefile \
|| die "failed to fix VERSION in Makefile"
tree-sitter-grammar_src_prepare
}