]> git.pld-linux.org Git - packages/arts++.git/blob - arts++.spec
- tabs in preamble
[packages/arts++.git] / arts++.spec
1 Summary:        Library for handling ARTS data files
2 Summary(pl.UTF-8):      Biblioteka do obsługi plików danych ARTS
3 Name:           arts++
4 Version:        1.1.a12
5 Release:        1
6 Epoch:          0
7 License:        GPL
8 Group:          Libraries
9 Source0:        http://www.caida.org/tools/utilities/arts/download/%{name}-%{version}.tar.gz
10 # Source0-md5:  bb0afcc952c4cf5864342b68380f9ffc
11 Patch0:         %{name}-nolibs.patch
12 Patch1:         %{name}-printf.patch
13 URL:            http://www.caida.org/tools/utilities/arts/
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  flex
17 BuildRequires:  libstdc++-devel
18 BuildRequires:  libtool >= 2:1.4d
19 BuildRequires:  perl-base
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %define         _includedir     %{_prefix}/include/%{name}
23
24 %description
25 arts++ is a set of C++ classes and applications for handling ARTS data
26 files produced by CAIDA software (cflowd and skitter).
27
28 %description -l pl.UTF-8
29 arts++ to zbiór klas C++ i aplikacji do obsługi plików danych ARTS
30 tworzonych przez oprogramowanie CAIDA (cflowd i skitter).
31
32 %package devel
33 Summary:        Header files and development documentation for arts++
34 Summary(pl.UTF-8):      Pliki nagłówkowe i dokumentacja programisty dla arts++
35 Group:          Development/Libraries
36 Requires:       %{name} = %{epoch}:%{version}-%{release}
37 Requires:       libstdc++-devel
38
39 %description devel
40 Header files and development documentation for arts++.
41
42 %description devel -l pl.UTF-8
43 Pliki nagłówkowe i dokumentacja programisty dla arts++.
44
45 %package static
46 Summary:        Static arts++ library
47 Summary(pl.UTF-8):      Statyczna biblioteka arts++
48 Group:          Development/Libraries
49 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
50
51 %description static
52 Static arts++ library.
53
54 %description static -l pl.UTF-8
55 Statyczna biblioteka arts++.
56
57 %prep
58 %setup -q
59 %patch0 -p1
60 %patch1 -p1
61
62 find . -name Makefile.in | xargs \
63         %{__perl} -pi -e 's/(\@(include|lib|bin|man)dir\@)/\$(DESTDIR)$1/g;
64         s/-m 444/-m 644/g;s/-m 555/-m 755/g'
65
66 %{__perl} -pi -e 's/-m 644//' classes/src/Makefile.in
67 %{__perl} -pi -e 's/manl/man1/;s/\.l$/\.1/' apps/*/Makefile.in
68 %{__perl} -pi -e 's/l LOCAL/1 LOCAL/' apps/*/*.man
69
70 %build
71 chmod u+w *.m4 configure
72 %{__libtoolize}
73 %{__aclocal}
74 %{__autoconf}
75 %configure \
76         --enable-shared
77 %{__make}
78
79 %install
80 rm -rf $RPM_BUILD_ROOT
81 install -d $RPM_BUILD_ROOT%{_includedir}
82
83 %{__make} install \
84         DESTDIR=$RPM_BUILD_ROOT
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %post   -p /sbin/ldconfig
90 %postun -p /sbin/ldconfig
91
92 %files
93 %defattr(644,root,root,755)
94 %doc ChangeLog doc/*.html
95 %attr(755,root,root) %{_bindir}/*
96 %attr(755,root,root) %{_libdir}/lib*.so.*.*
97 %{_mandir}/man1/*.1*
98
99 %files devel
100 %defattr(644,root,root,755)
101 %attr(755,root,root) %{_libdir}/lib*.so
102 %{_libdir}/lib*.la
103 %{_includedir}
104
105 %files static
106 %defattr(644,root,root,755)
107 %{_libdir}/lib*.a
This page took 0.059655 seconds and 3 git commands to generate.