mirror of
https://github.com/pfloos/quack
synced 2025-01-03 18:16:03 +01:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget https://gitlab.com/libxc/libxc/-/archive/5.0.0/libxc-5.0.0.tar.gz
|
|
tar -xzf libxc-5.0.0.tar.gz
|
|
cd libxc-5.0.0
|
|
./configure --prefix=$QUACK_ROOT
|
|
make
|
|
make check
|
|
make install
|