Please add this package. It's a requirement of upcoming ethereum-cpp update. OBS-URL: https://build.opensuse.org/request/show/674737 OBS-URL: https://build.opensuse.org/package/show/network:cryptocurrencies/libff?expand=0&rev=1
24 lines
532 B
Bash
24 lines
532 B
Bash
#!/bin/bash
|
|
# Use this script to make source tarball.
|
|
|
|
git clone https://github.com/scipr-lab/libff.git
|
|
cd libff
|
|
|
|
# https://en.opensuse.org/openSUSE:Package_naming_guidelines#SCM_snapshots
|
|
version="0~git$(git rev-list master | wc -l)"
|
|
|
|
rm -rf .git*
|
|
|
|
# see 00_no_bn128.patch
|
|
rm -r depends
|
|
rm -r libff/algebra/curves/bn128
|
|
rm libff/algebra/scalar_multiplication/multiexp_profile.cpp
|
|
|
|
find . -type f -exec chmod -x {} +
|
|
|
|
cd ..
|
|
mv libff "libff-${version}"
|
|
tar -caf "libff-${version}.tar.xz" "libff-${version}"
|
|
|
|
rm -r "libff-${version}"
|