46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
# Template file for 'spdx-licenses-list'
|
|
|
|
# common/travis/license.lst should be updated in sync with this package
|
|
pkgname=spdx-licenses-list
|
|
version=3.14
|
|
revision=1
|
|
wrksrc="license-list-data-${version}"
|
|
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=f3a4eaf058cf7e37e7c36fe6fc50aa037367327b429c84babd6b29bea5c2e200
|
|
|
|
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
|
|
}
|
|
}
|