]> git.pld-linux.org Git - packages/dirac.git/blob - dirac.spec
- don't install unit testsuite program (avoid cppunit dependency)
[packages/dirac.git] / dirac.spec
1 Summary:        General purpose video codec
2 Summary(pl):    Kodek obrazu ogólnego przeznaczenia
3 Name:           dirac
4 Version:        0.5.2
5 Release:        2
6 License:        MPL
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/dirac/%{name}-%{version}.tar.gz
9 # Source0-md5:  e83e3dc3025c04b3163fbcd1d5e6a328
10 Patch0:         %{name}-am.patch
11 URL:            http://www.bbc.co.uk/rd/projects/dirac/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake
14 BuildRequires:  doxygen
15 BuildRequires:  libstdc++-devel
16 BuildRequires:  libtool >= 2:1.5
17 BuildRequires:  perl-base
18 BuildRequires:  tetex-dvips
19 BuildRequires:  tetex-format-latex
20 BuildRequires:  tetex-metafont
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %define         _noautocompressdoc      *.map *.dot
24
25 %description
26 Dirac is a general-purpose video codec aimed at resolutions from QCIF
27 (180x144) to HDTV (1920x1080) progressive or interlaced. It uses
28 wavelets, motion compensation and arithmetic coding.
29
30 %description -l pl
31 Dirac jest kodekiem ogólnego przeznaczenia dla obrazu o
32 rozdzielczo¶ciach od QCIF (180x144) do HDTV (1920x1080). Kodek ten
33 wykorzystuje fale elementarne (wavelets), kompensacjê ruchu (motion
34 compensation) oraz kodowanie arytmetyczne (arithmetic coding).
35
36 %package devel
37 Summary:        Header files for dirac library
38 Summary(pl):    Pliki nag³ówkowe biblioteki dirac
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}-%{release}
41 Requires:       libstdc++-devel
42
43 %description devel
44 Header files for dirac library.
45
46 %description devel -l pl
47 Pliki nag³ówkowe biblioteki dirac.
48
49 %package static
50 Summary:        Static dirac library
51 Summary(pl):    Statyczna biblioteka dirac
52 Group:          Development/Libraries
53 Requires:       %{name}-devel = %{version}-%{release}
54
55 %description static
56 Static dirac library.
57
58 %description static -l pl
59 Statyczna biblioteka dirac.
60
61 %prep
62 %setup -q
63 %patch0 -p1
64
65 %build
66 %{__libtoolize}
67 %{__aclocal}
68 %{__autoconf}
69 %{__automake}
70 %configure
71 %{__make}
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75
76 %{__make} install \
77         DESTDIR=$RPM_BUILD_ROOT \
78         CPPUNITTESTS_DIR=
79
80 rm -f doc/api/html/*.md5
81 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/dirac
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %post   -p /sbin/ldconfig
87 %postun -p /sbin/ldconfig
88
89 %files
90 %defattr(644,root,root,755)
91 %doc AUTHORS ChangeLog NEWS README TODO doc/faq.htm
92 %attr(755,root,root) %{_bindir}/*
93 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
94
95 %files devel
96 %defattr(644,root,root,755)
97 %doc doc/api/html doc/programmers/programmers_guide.pdf doc/dirac_doc_howto.txt
98 %attr(755,root,root) %{_libdir}/lib*.so
99 %{_libdir}/lib*.la
100 %{_includedir}/%{name}
101 %{_pkgconfigdir}/*.pc
102
103 %files static
104 %defattr(644,root,root,755)
105 %{_libdir}/lib*.a
This page took 0.051745 seconds and 3 git commands to generate.