blob: 31caaf339d36313321ab83c5edf44de5e4db3590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
#
# SPDX-License-Identifier: MIT
THIS_DIR="$(dirname "$0")"
VERSION="3.0.1"
shacl2code generate --input https://spdx.org/rdf/$VERSION/spdx-model.ttl \
--input https://spdx.org/rdf/$VERSION/spdx-json-serialize-annotations.ttl \
--context https://spdx.org/rdf/$VERSION/spdx-context.jsonld \
python -o $THIS_DIR/../../meta/lib/oe/spdx30.py
|