mirror of
https://github.com/namecoin/ncdns-repro
synced 2024-11-10 07:10:29 +00:00
740bea972f
This aligns us better with upstream Tor conventions
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
version: 0.0.1
|
|
git_url: https://github.com/namecoin/pkcs11mod.git
|
|
git_hash: f7dce61fc5379851e99cfa2111834a29e3d36305
|
|
filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.gz'
|
|
|
|
build: '[% c("projects/go/var/build_go_lib") %]'
|
|
|
|
var:
|
|
container:
|
|
use_container: 1
|
|
go_lib: github.com/namecoin/pkcs11mod
|
|
go_lib_deps:
|
|
- gopkcs11
|
|
cgo: 1
|
|
build_go_lib_pre: |
|
|
[% IF c("var/cgo") %]
|
|
[% pc(c('var/compiler'), 'var/setup', { compiler_tarfile => c('input_files_by_name/' _ c('var/compiler')) }) %]
|
|
|
|
[% IF c("var/linux") %]
|
|
tar -C /var/tmp/dist -xf $rootdir/[% c('input_files_by_name/binutils') %]
|
|
export PATH="/var/tmp/dist/binutils/bin:$PATH"
|
|
|
|
# The pkcs11mod Makefile wants to see CC
|
|
export CC="$(go env CC)"
|
|
[% END -%]
|
|
|
|
[% IF c("var/osx") -%]
|
|
export CGO_CFLAGS="[% c("var/FLAGS") %] -mmacosx-version-min=10.7"
|
|
export CGO_CXXFLAGS="[% c("var/FLAGS") %] -stdlib=libc++ -mmacosx-version-min=10.7"
|
|
export CGO_LDFLAGS="[% c("var/FLAGS") %] -stdlib=libc++ -mmacosx-version-min=10.7"
|
|
export CC="$clangdir/bin/clang"
|
|
export CXX="$clangdir/bin/clang++"
|
|
[% END -%]
|
|
|
|
[% IF c("var/windows") %]
|
|
# The pkcs11mod Makefile wants to see CC
|
|
export CC="$(go env CC)"
|
|
[% END -%]
|
|
[% END -%]
|
|
|
|
export CGO_ENABLED=[% c("var/cgo") %]
|
|
|
|
go generate [% c("var/go_lib") %]
|
|
|
|
input_files:
|
|
- project: container-image
|
|
- name: go
|
|
project: go
|
|
- name: '[% c("var/compiler") %]'
|
|
project: '[% c("var/compiler") %]'
|
|
enable: '[% c("var/cgo") %]'
|
|
- name: binutils
|
|
project: binutils
|
|
enable: '[% c("var/linux") && c("var/cgo") %]'
|
|
- name: gopkcs11
|
|
project: gopkcs11
|