Swift wrapper around libbitcoinconsensus.
Make and install libbitcoinconsensus:
pushd bitcoin
./autogen.sh
./configure --with-libs=yes --with-gui=no --with-daemon=no --with-utils=no --disable-tests --disable-bench
make -j6
make installInside your projects Package.swift:
dependencies: [
.package(url: "https://github.com/fanquake/swiftLibconsensus", .branch("master"))
],