ffsend: always use openssl backend instead of ring
This fixes build on platforms that ring doesn't have support for.
This commit is contained in:
parent
80672e4856
commit
2348ac8e18
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'ffsend'
|
||||
pkgname=ffsend
|
||||
version=0.2.64
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=cargo
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="libressl-devel"
|
||||
|
@ -11,3 +11,8 @@ license="GPL-3.0-or-later"
|
|||
homepage="https://github.com/timvisee/ffsend"
|
||||
distfiles="https://github.com/timvisee/ffsend/archive/v${version}.tar.gz"
|
||||
checksum=bb4c435e864cd543075b3a35a9d6af62d51c7a1a1859e381518da0a52c073e99
|
||||
|
||||
post_extract() {
|
||||
# avoid ring dependency
|
||||
vsed -i 's,"crypto-ring","crypto-openssl",' Cargo.toml
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue