mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
distributable:
|
|
url: https://github.com/nishanths/license/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: nishanths/license
|
|
|
|
provides:
|
|
- bin/license
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.16
|
|
env:
|
|
LDFLAGS:
|
|
- -X=main.version={{version}}
|
|
linux:
|
|
# or segmentation fault
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
script: |
|
|
GOBIN={{prefix}}/bin go install -ldflags="$LDFLAGS" .
|
|
|
|
test:
|
|
fixture: |
|
|
MIT License
|
|
|
|
Copyright (c) 1997 David Roman
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
|
|
env:
|
|
LICENSE_FULL_NAME: David Roman
|
|
|
|
script: |
|
|
license -year 1997 mit > LICENSE
|
|
test "$(cat LICENSE)" = "$(cat $FIXTURE)"
|