6940042683
- update to 1.0.0 * no upstream changelog - refreshed patches OBS-URL: https://build.opensuse.org/request/show/869577 OBS-URL: https://build.opensuse.org/package/show/network:cryptocurrencies/libff?expand=0&rev=2
24 lines
454 B
Bash
24 lines
454 B
Bash
#!/bin/bash
|
|
# Use this script to make source tarball.
|
|
|
|
git clone https://github.com/scipr-lab/libff.git
|
|
cd libff
|
|
|
|
version="1.0.0"
|
|
git checkout "v${version}"
|
|
|
|
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}"
|