void-packages/srcpkgs/ffsend/template
q66 2348ac8e18 ffsend: always use openssl backend instead of ring
This fixes build on platforms that ring doesn't have support for.
2020-06-03 18:28:19 +02:00

18 lines
567 B
Bash

# Template file for 'ffsend'
pkgname=ffsend
version=0.2.64
revision=2
build_style=cargo
hostmakedepends="pkg-config"
makedepends="libressl-devel"
short_desc="Fully featured Firefox Send client"
maintainer="Jasper Chan <jasperchan515@gmail.com>"
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
}