This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·101 lines (91 loc) · 2.71 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#! /bin/sh
# libkawaii - A Japanese language support library for Qt4
# Copyright (C) 2007 John Eric Martin <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# 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.,
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
BOLD="\033[1m"
RED="\033[91m"
GREEN="\033[92m"
YELLOW="\033[93m"
CYAN="\033[96m"
NORMAL="\033[0m"
# Make sure cmake is available.
if command -v cmake >/dev/null 2>&1;
then
CMAKE=cmake
else
echo "Error - cmake is not available!"
exit 2
fi
help=false
build="Release"
prefix=/usr
defines=""
docs=OFF
demo=ON
rename=ON
# Parse the args
for i in "$@"
do
case $i in
--help ) help=true ;;
--debug ) build="Debug" ;;
--release ) build="Release" ;;
--prefix=* ) prefix="${i#--prefix=}" ;;
--enable-docs ) docs=ON ;;
--disable-docs ) docs=OFF ;;
--enable-demo ) demo=ON ;;
--disable-demo ) demo=OFF ;;
--enable-rename ) rename=ON ;;
--disable-rename ) rename=OFF ;;
* ) echo "Unrecognised argument $i" ;;
esac
done
if [ "$help" = "true" ]
then
echo "---------------------------------------"
echo "libkawaii Configuration Script"
echo "---------------------------------------"
echo
echo "--help Show this message."
echo "--debug Configure debug build."
echo "--release Configure release build."
echo "--prefix=path Installation prefix."
echo "--enable-docs Enable API doc generation."
echo "--disable-docs Disable API doc generation."
echo "--enable-demo Enable the demo application."
echo "--disable-demo Disable the demo application."
echo "--enable-rename Enable the rename application."
echo "--disable-rename Disable the rename application."
exit 0
fi
mkdir -p ./build
cd ./build
$CMAKE -DCMAKE_BUILD_TYPE=$build -DCMAKE_INSTALL_PREFIX=$prefix ${defines} -DBUILD_KAWAIIDEMO=$demo -DBUILD_KAWAIIRENAME=$rename -DBUILD_DOCS=$docs -G "Unix Makefiles" .. || exit 1
cd ..
echo ""
echo "Your configure completed "$GREEN"successfully"$NORMAL", now type "$BOLD"make"$NORMAL
echo ""
cat > Makefile << EOF
all:
@make --no-print-directory -C build/
install:
@make install --no-print-directory -C build/
clean:
@make clean --no-print-directory -C build/
distclean:
@rm -Rf build/
@rm -f Makefile
EOF