You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
298 B
14 lines
298 B
export PATH="$HOME/.new_local/bin:$PATH" |
|
|
|
curl -L https://libzip.org/download/libzip-1.5.2.tar.gz -o libzip.tar.gz |
|
tar xf libzip.tar.gz |
|
cd libzip-* |
|
mkdir build |
|
cd build |
|
echo "Build LibZip" |
|
pwd |
|
$HOME/gtk/inst/bin/cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/gtk/inst .. |
|
make -j8 |
|
make install |
|
cd .. |
|
cd ..
|
|
|