mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 14:32:22 +08:00
99 lines
2.7 KiB
Bash
99 lines
2.7 KiB
Bash
|
#!/bin/bash
|
||
|
# Copyright (C) 2022 Vladislav Nepogodin
|
||
|
#
|
||
|
# This file is part of CachyOS CLI.
|
||
|
#
|
||
|
# This program 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 2 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "`dirname "$0"`"
|
||
|
|
||
|
if [[ $1 == "--help" ]]; then
|
||
|
cat<<EOF
|
||
|
Usage: configure.sh [options]
|
||
|
Options:
|
||
|
--help Display this information.
|
||
|
--buildtype=, -t= Specify build type.
|
||
|
--prefix= Specify install prefix.
|
||
|
--libdir= Specify lib directory.
|
||
|
--path=, -p= Specify build directory.
|
||
|
EOF
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
|
||
|
_buildpath="build"
|
||
|
_prefix="/usr/local"
|
||
|
_libdir="lib"
|
||
|
_buildtype="RelWithDebInfo"
|
||
|
for i in "$@"; do
|
||
|
case $i in
|
||
|
-t=*|--buildtype=*)
|
||
|
_buildtype="${i#*=}"
|
||
|
shift # past argument=value
|
||
|
;;
|
||
|
--prefix=*)
|
||
|
_prefix="${i#*=}"
|
||
|
shift # past argument=value
|
||
|
;;
|
||
|
--libdir=*)
|
||
|
_libdir="${i#*=}"
|
||
|
shift # past argument=value
|
||
|
;;
|
||
|
-p=*|--path=*)
|
||
|
_buildpath="${i#*=}"
|
||
|
shift # past argument=value
|
||
|
;;
|
||
|
*)
|
||
|
# unknown option
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
|
||
|
cmake -S . -B ${_buildpath}/${_buildtype} \
|
||
|
-DCMAKE_BUILD_TYPE=${_buildtype} \
|
||
|
-DCMAKE_INSTALL_PREFIX=${_prefix} \
|
||
|
-DCMAKE_INSTALL_LIBDIR=${_libdir}
|
||
|
|
||
|
cat > build.sh <<EOF
|
||
|
#!/bin/bash
|
||
|
# Copyright (C) 2022 Vladislav Nepogodin
|
||
|
#
|
||
|
# This file is part of CachyOS CLI.
|
||
|
#
|
||
|
# This program 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 2 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "\`dirname "\$0"\`"
|
||
|
|
||
|
cmake --build ${_buildpath}/${_buildtype} --parallel $(nproc)
|
||
|
EOF
|
||
|
|
||
|
chmod +x ./build.sh
|