-
Notifications
You must be signed in to change notification settings - Fork 12
/
BCUnit.spec.in
95 lines (83 loc) · 3.21 KB
/
BCUnit.spec.in
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
Summary: A unit testing framework for 'C'
Name: @PACKAGE@
Version: @VERSION@
Release: @RELEASE@
Source: http://www.sourceforge.net/projects/bcunit/@PACKAGE@-@VERSION@-@[email protected]
Group: Development/Tools
License: GPL
URL: https://github.com/BelledonneCommunications/bcunit
Packager: Jerry St. Clair <[email protected]>
%description
BCUnit is a unit testing framework for C.
This package installs the BCUnit static library,
headers, and documentation files.
%prep
echo "Preparing for Installation."
%setup -q -n @PACKAGE@-@VERSION@-@RELEASE@
%build
echo "Preparing for Building."
./configure --prefix=%{_prefix} --enable-automated --enable-basic --enable-console --enable-curses --enable-examples --enable-test && \
make
%install
echo "Preparing for Make install."
make DESTDIR=$RPM_BUILD_ROOT install
%clean
%files
%defattr(-,root,root)
########### Include Files
%{_prefix}/include/BCUnit/Automated.h
%{_prefix}/include/BCUnit/Basic.h
%{_prefix}/include/BCUnit/Console.h
%{_prefix}/include/BCUnit/CUError.h
%{_prefix}/include/BCUnit/BCUnit.h
%{_prefix}/include/BCUnit/BCUnit_intl.h
%{_prefix}/include/BCUnit/CUCurses.h
%{_prefix}/include/BCUnit/MyMem.h
%{_prefix}/include/BCUnit/TestDB.h
%{_prefix}/include/BCUnit/TestRun.h
%{_prefix}/include/BCUnit/Util.h
########## Library Files
%{_prefix}/lib/libbcunit.a
%{_prefix}/lib/libbcunit.so.@LIBTOOL_SUFFIX@
########## doc Files
%{_prefix}/doc/@PACKAGE@/BCUnit_doc.css
%{_prefix}/doc/@PACKAGE@/error_handling.html
%{_prefix}/doc/@PACKAGE@/fdl.html
%{_prefix}/doc/@PACKAGE@/index.html
%{_prefix}/doc/@PACKAGE@/introduction.html
%{_prefix}/doc/@PACKAGE@/managing_tests.html
%{_prefix}/doc/@PACKAGE@/running_tests.html
%{_prefix}/doc/@PACKAGE@/test_registry.html
%{_prefix}/doc/@PACKAGE@/writing_tests.html
%{_prefix}/doc/@PACKAGE@/headers/Automated.h
%{_prefix}/doc/@PACKAGE@/headers/Basic.h
%{_prefix}/doc/@PACKAGE@/headers/Console.h
%{_prefix}/doc/@PACKAGE@/headers/CUError.h
%{_prefix}/doc/@PACKAGE@/headers/BCUnit.h
%{_prefix}/doc/@PACKAGE@/headers/BCUnit_intl.h
%{_prefix}/doc/@PACKAGE@/headers/CUCurses.h
%{_prefix}/doc/@PACKAGE@/headers/MyMem.h
%{_prefix}/doc/@PACKAGE@/headers/TestDB.h
%{_prefix}/doc/@PACKAGE@/headers/TestRun.h
%{_prefix}/doc/@PACKAGE@/headers/Util.h
%{_prefix}/doc/@PACKAGE@/headers/Win.h
########## Manpage Files
%{_prefix}/man/man3/BCUnit.3*
########## Share information and Example Files
%{_prefix}/share/@PACKAGE@/Examples/Automated/README
%{_prefix}/share/@PACKAGE@/Examples/Automated/AutomatedTest
%{_prefix}/share/@PACKAGE@/Examples/Basic/README
%{_prefix}/share/@PACKAGE@/Examples/Basic/BasicTest
%{_prefix}/share/@PACKAGE@/Examples/Console/README
%{_prefix}/share/@PACKAGE@/Examples/Console/ConsoleTest
%{_prefix}/share/@PACKAGE@/Examples/Curses/README
%{_prefix}/share/@PACKAGE@/Examples/Curses/CursesTest
%{_prefix}/share/@PACKAGE@/Test/test_bcunit
%{_prefix}/share/@PACKAGE@/BCUnit-List.dtd
%{_prefix}/share/@PACKAGE@/BCUnit-List.xsl
%{_prefix}/share/@PACKAGE@/BCUnit-Run.dtd
%{_prefix}/share/@PACKAGE@/BCUnit-Run.xsl
%{_prefix}/share/@PACKAGE@/Memory-Dump.dtd
%{_prefix}/share/@PACKAGE@/Memory-Dump.xsl
# Add the change log in ChangeLog file located under source home directory.
# The same file is used internally to populate the change log for the RPM creation.