mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
+crates.io/gitui (#1335)
* +crates.io/gitui * Unlock * Use cc as linker * Add OpenSSL * Add perl * Move OpenSSL to dependencies node * Add zlib * Use steeped OpenSSL * Quote to prevent parsing object * OPENSSL_NO_VENDOR * Add comments
This commit is contained in:
parent
756b984ecb
commit
abf345ab9d
1 changed files with 30 additions and 0 deletions
30
projects/crates.io/gitui/package.yml
Normal file
30
projects/crates.io/gitui/package.yml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/extrawurst/gitui/archive/refs/tags/v{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/gitui
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: extrawurst/gitui/tags
|
||||||
|
strip: /v/
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
perl.org: "*"
|
||||||
|
openssl.org: "*"
|
||||||
|
zlib.net: ^1
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: c99
|
||||||
|
rust-lang.org: ">=1.60"
|
||||||
|
rust-lang.org/cargo: "*"
|
||||||
|
script: cargo install --path . --root {{prefix}}
|
||||||
|
env:
|
||||||
|
linux:
|
||||||
|
RUSTFLAGS: "-C linker=cc"
|
||||||
|
# See: https://docs.rs/openssl/latest/openssl/#manual
|
||||||
|
OPENSSL_NO_VENDOR: true # Always find OpenSSL in the system, even if the vendored feature is enabled.
|
||||||
|
OPENSSL_DIR: "{{ deps.openssl.org.prefix }}" # Use tea's openssl installation directory
|
||||||
|
|
||||||
|
test: gitui --version
|
Loading…
Reference in a new issue