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.
13 lines
321 B
13 lines
321 B
#!/bin/bash -x |
|
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-* || exit |
|
mkdir build |
|
cd build || exit |
|
echo "Build LibZip" |
|
pwd |
|
"$HOME"/gtk/inst/bin/cmake -DCMAKE_INSTALL_PREFIX:PATH="$HOME"/gtk/inst .. |
|
make -j8 |
|
make install
|
|
|