mirror of
https://github.com/pfloos/quack
synced 2024-11-05 13:43:51 +01:00
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
###git clone --single-branch --branch master https://gitlab.com/libxc/libxc.git
|
|
tar -xzvf libxc-5.0.0.tar.gz
|
|
cd libxc-5.0.0
|
|
###autoreconf -i
|
|
./configure --prefix=$QUACK_ROOT
|
|
make
|
|
make check
|
|
make install
|