46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
# Template file for 'spdx-licenses-list'
|
|
# common/travis/license.lst should be updated in sync with this package
|
|
# run common/scripts/check-custom-licenses after updating to find
|
|
# license fields in packages that can have 'custom:' removed
|
|
pkgname=spdx-licenses-list
|
|
version=3.22
|
|
revision=1
|
|
short_desc="SPDX License List"
|
|
maintainer="mobinmob <mobinmob@disroot.org>"
|
|
license="CC-BY-3.0"
|
|
homepage="https://spdx.org"
|
|
distfiles="https://github.com/spdx/license-list-data/archive/v${version}.tar.gz"
|
|
checksum=ecc9b78b590f5460b7713c1fc9e2093979b18edc2eb48084ba36ad35d2f13892
|
|
|
|
do_install() {
|
|
vmkdir usr/share/spdx
|
|
for i in text/*.txt; do
|
|
i=${i##*/}
|
|
echo ${i%.*} >> ${DESTDIR}/usr/share/spdx/license.lst
|
|
done
|
|
}
|
|
|
|
spdx-licenses-text_package() {
|
|
short_desc="SPDX licenses in plain text"
|
|
pkg_install() {
|
|
vmkdir usr/share/spdx
|
|
vcopy text usr/share/spdx
|
|
}
|
|
}
|
|
|
|
spdx-licenses-json_package() {
|
|
short_desc="SPDX licenses in JSON"
|
|
pkg_install() {
|
|
vmkdir usr/share/spdx
|
|
vcopy json usr/share/spdx
|
|
}
|
|
}
|
|
|
|
spdx-licenses-html_package() {
|
|
short_desc="SPDX licenses in HTML"
|
|
pkg_install() {
|
|
vmkdir usr/share/spdx
|
|
vcopy html usr/share/spdx
|
|
}
|
|
}
|