mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-30 10:38:07 -07:00
22 lines
559 B
Bash
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
|
|
}
|