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

10 lines
189 B
Bash
Raw Normal View History

2020-10-12 14:25:30 +02:00
#!/bin/bash
2020-10-13 20:59:03 +02:00
wget https://gitlab.com/libxc/libxc/-/archive/5.0.0/libxc-5.0.0.tar.gz
tar -xzf libxc-5.0.0.tar.gz
2020-10-13 13:44:24 +02:00
cd libxc-5.0.0
2020-10-12 14:25:30 +02:00
./configure --prefix=$QUACK_ROOT
make
make check
make install