blob: e94f734f4d7ac1e2a551dd20e9b465190415dca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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
}
|