skopeo: install config files

This commit is contained in:
Cameron Nemo 2018-08-20 02:33:48 -07:00 committed by maxice8
parent b0485419fe
commit 61ed9229de
1 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'skopeo' # Template file for 'skopeo'
pkgname=skopeo pkgname=skopeo
version=0.1.31 version=0.1.31
revision=1 revision=2
build_style=go build_style=go
go_import_path="github.com/projectatomic/${pkgname}" go_import_path="github.com/projectatomic/${pkgname}"
go_package="${go_import_path}/cmd/${pkgname}" go_package="${go_import_path}/cmd/${pkgname}"
@ -13,10 +13,17 @@ license="Apache-2.0"
homepage="https://github.com/containers/skopeo" homepage="https://github.com/containers/skopeo"
distfiles="https://github.com/containers/${pkgname}/archive/v${version}.tar.gz" distfiles="https://github.com/containers/${pkgname}/archive/v${version}.tar.gz"
checksum=f41121044ddca07afa63788302caf3582a653269c9601f7528003693d9807726 checksum=f41121044ddca07afa63788302caf3582a653269c9601f7528003693d9807726
make_dirs="/var/lib/atomic/sigstore 0755 root root"
post_build() {
go-md2man -in docs/skopeo.1.md -out docs/skopeo.1
}
post_install() { post_install() {
go-md2man -in docs/skopeo.1.md -out docs/skopeo.1
vman docs/skopeo.1 vman docs/skopeo.1
vinstall completions/bash/skopeo 644 usr/share/bash-completion/completions vinstall completions/bash/skopeo 644 usr/share/bash-completion/completions
vmkdir etc/containers
vinstall default-policy.json 644 etc/containers policy.json
vmkdir etc/containers/registries.d
vinstall default.yaml 644 etc/containers/registries.d
} }