CloverBootloader/CloverPackage/CloverPrefpane/install.sh
vectorsigma 1ec5de9534 Make Clover compilable in UNIX Systems using git
ebuild.sh/buildme update
2019-09-05 13:30:12 +02:00

26 lines
531 B
Bash
Executable File

#!/bin/bash
# Prevent the script from doing bad things
set -u # Abort with unset variables
# Go to the script directory
cd "$(dirname $0)"
declare -r CLOVER_PREFPANE_DIR="$PWD"
# Build application if necessary
make CloverPrefpane || exit $?
# Install files
open "$CLOVER_PREFPANE_DIR"/build/Clover.prefpane
echo "CloverPrefpane install successfully !"
# Local Variables: #
# mode: ksh #
# tab-width: 4 #
# indent-tabs-mode: nil #
# End: #
#
# vi: set expandtab ts=4 sw=4 sts=4: #