blob: e0e0ff69a78fb39c1da57c158e6ecf884076267c (
plain)
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
|
Index: install.sh
===================================================================
--- install.sh (revision 915464)
+++ install.sh (working copy)
@@ -94,21 +94,6 @@
make realclean
cd ..
-#install binary helper scripts
-if ( test $EBN -eq 0 ) then
- cd src/desktop-file-utils-0.14 && \
- ./configure && make && \
- cp -f ./src/desktop-file-validate $TOP/lib/krazy2/krazy-helpers && \
- make distclean
- cd ../..
-else
- if ( test ! -x /usr/local/bin/desktop-file-validate ) then
- echo "Please install the desktop-file-utils package"
- echo "Exiting $0"
- exit 1
- fi
-fi
-
#build and install non-binary plugins
cd plugins && \
make install PREFIX=$TOP && \
@@ -121,25 +106,6 @@
make realclean
cd ..
-#build and install (non-cppchecks) binary plugins
-cd src && \
-$QMAKE && \
-make && \
-make install INSTALL_ROOT=$TOP && \
-make distclean
-cd ..
-
-# build and install cppcheck plugins
-cd cppchecks && \
-mkdir -p build && \
-cd build && \
-cmake -DCMAKE_PREFIX_PATH=$TOP .. && \
-make && \
-make install
-cd ..
-rm -rf build
-cd ..
-
#install share stuff
mkdir -p $TOP/share/dtd
cd share && \
|