1 |
< |
### RPM external cppunit 1.10.2-XXXX |
1 |
> |
### RPM external cppunit 1.12.1 |
2 |
|
Source0: http://switch.dl.sourceforge.net/sourceforge/%n/%n-%realversion.tar.gz |
3 |
|
Source1: http://spi.cvs.cern.ch:8180/cgi-bin/spi.cgi/*checkout*/Components/UnitTesting/Tools/CppUnit/CppUnit_testdriver.cpp?rev=1.1 |
4 |
|
|
6 |
|
%setup -n %n-%realversion |
7 |
|
|
8 |
|
%build |
9 |
< |
./configure --prefix=%i |
9 |
> |
case %cmsplatf in |
10 |
> |
osx105* ) perl -p -i -e 's|rm(.*)conftest|rm -fr $1 conftest|g' configure \ |
11 |
> |
aclocal.m4 \ |
12 |
> |
libtool \ |
13 |
> |
config/ltmain.sh |
14 |
> |
;; |
15 |
> |
esac |
16 |
> |
case $(uname) in |
17 |
> |
Linux ) |
18 |
> |
# Ugly hack to force -ldl to be linked, which for some reason is |
19 |
> |
# not currently happening via configure |
20 |
> |
perl -p -i -e 's|LIBS.*LIBS.*lm|LIBS="$LIBS -lm -ldl|' configure |
21 |
> |
;; |
22 |
> |
esac |
23 |
> |
./configure --prefix=%i |
24 |
|
make %makeprocesses |
25 |
|
%install |
26 |
|
make install |
27 |
|
cp %_sourcedir/CppUnit_testdriver.cpp* %i/include/CppUnit_testdriver.cpp |
28 |
+ |
|
29 |
+ |
# SCRAM ToolBox toolfile |
30 |
+ |
mkdir -p %i/etc/scram.d |
31 |
+ |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
32 |
+ |
<doc type=BuildSystem::ToolDoc version=1.0> |
33 |
+ |
<Tool name=%n version=%v> |
34 |
+ |
<lib name=cppunit> |
35 |
+ |
<Client> |
36 |
+ |
<Environment name=CPPUNIT_BASE default="%i"></Environment> |
37 |
+ |
<Environment name=LIBDIR default="$CPPUNIT_BASE/lib"></Environment> |
38 |
+ |
<Environment name=INCLUDE default="$CPPUNIT_BASE/include"></Environment> |
39 |
+ |
</Client> |
40 |
+ |
<use name=sockets> |
41 |
+ |
</Tool> |
42 |
+ |
EOF_TOOLFILE |
43 |
+ |
|
44 |
|
%post |
45 |
|
%{relocateConfig}/bin/cppunit-config |
46 |
|
%{relocateConfig}/lib/libcppunit.la |
47 |
+ |
%{relocateConfig}etc/scram.d/%n |