- Update to rdma-core v20.1 (fate#325887, fate#325919, fate#326000) * No release notes available - Drop patches merged upstream: * suse-Add-recommends-for-rxe_cfg-requirements.patch adds recommends for the relevant packages * rxe-switch-to-iproute2-for-rxe_cfg.patch switches to iproute2 commands OBS-URL: https://build.opensuse.org/request/show/644578 OBS-URL: https://build.opensuse.org/package/show/science:HPC/rdma-core?expand=0&rev=96
13 lines
262 B
Bash
13 lines
262 B
Bash
#!/bin/bash
|
|
TARBALL=$(rpmspec --parse rdma-core.spec | grep Source: | awk '{ print $NF}')
|
|
OUTDIR=$(tar tf $TARBALL | head -n 1)
|
|
|
|
rm -Rf $OUTDIR
|
|
tar xf $TARBALL
|
|
cd $OUTDIR
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make docs
|
|
tar czf ../../prebuilt-pandoc.tgz pandoc-prebuilt
|