7/6
This commit is contained in:
27
util/get_libconfini.sh
Normal file
27
util/get_libconfini.sh
Normal 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";
|
||||
}
|
||||
Reference in New Issue
Block a user