4
1
mirror of https://github.com/pfloos/quack synced 2024-06-26 23:22:20 +02:00
quack/libxc-tools/install_libxc.sh

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