14 lines
329 B
Bash
14 lines
329 B
Bash
|
#!/bin/bash
|
||
|
git clone https://github.com/rpm-software-management/popt
|
||
|
|
||
|
set -e
|
||
|
cd popt
|
||
|
git reset HEAD --hard
|
||
|
git checkout 819145732782b21cdd24fb8d1c1cd3e09dbf3ace
|
||
|
|
||
|
export CFLAGS="-O3"
|
||
|
export CXXFLAGS="-O3"
|
||
|
cmake . -DCMAKE_TOOLCHAIN_FILE="${xCMAKE}" -DCMAKE_INSTALL_PREFIX="$PREFIX" -DCMAKE_PREFIX_PATH="$PREFIX"
|
||
|
|
||
|
make
|
||
|
make install
|