File: wibble.spec

package info (click to toggle)
libwibble 1.1-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,088 kB
  • ctags: 2,743
  • sloc: cpp: 14,551; makefile: 191; perl: 87; sh: 26
file content (59 lines) | stat: -rw-r--r-- 1,319 bytes parent folder | download | duplicates (6)
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
Summary: Library of various useful C++ code
Name: libwibble-dev
Version: 0.1.11
Release: 1
License: BSD
Group: Development/Libraries
URL: http://packages.qa.debian.org/libwibble
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRequires: cmake, doxygen, libtool, boost-devel
Requires: boost-devel

 
%description
 libwibble collects the foundation code that has been used over time
 in various C++ projects by Peter Rockai and Enrico Zini, so that it can
 be maintained properly and in a single place.
 .
 The library contains:
  * an exception hierarchy;
  * various useful mixin classes;
  * shortcuts for set operations;
  * a commandline parser that supports cvs-style subcommands;
  * improved macros for tut unit testing;
  * a non-intrusive polimorphic envelope.

%prep
%setup -q

%build
%cmake -DHAVE_TUT=ON
make
make check

%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
make install DESTDIR="%{buildroot}"

%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"

%files
%defattr(-,root,root,-)
/usr/lib
/usr/include
/usr/lib/pkgconfig/libwibble*
/usr/share/aclocal/libwibble*.m4
#%doc /usr/share/doc/libwibble-dev

%post
/sbin/ldconfig

%postun
/sbin/ldconfig


%changelog
* Wed Sep 19 2007 Enrico Zini <enrico@enricozini.org>
- Initial build.