42530e0ac8
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Horea Christian <chr@chymera.eu>
29 lines
615 B
Bash
29 lines
615 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN="bids-specification"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="Official YAML schema for BIDS specification"
|
|
HOMEPAGE="https://github.com/bids-standard/bids-specification"
|
|
SRC_URI="https://github.com/bids-standard/bids-specification/archive/refs/tags/v${PV}.tar.gz -> ${MY_P}.tar.gz"
|
|
|
|
LICENSE="CC-BY-SA-4.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/${PN}"
|
|
cd src/schema
|
|
ls
|
|
die
|
|
doins -r src/schema/
|
|
}
|