Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
227 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
CURL_VERSION="$1"
wget -O cppunit.tar.gz https://dev-www.libreoffice.org/src/cppunit-${CURL_VERSION}.tar.gz
tar -xzf cppunit.tar.gz
cd cppunit-${CURL_VERSION}
./configure
make -j8
make install