This commit is contained in:
2025-07-06 22:07:15 -04:00
parent af6d263d22
commit f32082bb15
16 changed files with 1503 additions and 700 deletions

27
util/get_libconfini.sh Normal file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
#
# get_libconfini.sh - clone, configure, and compile libconfini
#
# This file is part of libglacier.
#
# Libglacier is free software: you can redistribute it and/or modify it under the terms
# of the GNU General Public License as published by the Free Software Foundation, either
# version 3 of the license, or (at your option) any later version.
#
# Libglacier is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# libglacier. If not, see <https://www.gnu.org/licenses/>.
#
if [[ "${0}" == "${BASH_SOURCE[0]}" ]]; then
printf "${0} cannot be executed directly and must be sourced.\n"
exit 1
fi
clone() {
URL="https://github.com/madmurphy/libconfini";
}