]> git.pld-linux.org Git - packages/libsrs_alt.git/blob - libsrs_alt.spec
- rel 5; unfortunately base64compat violates RFC5321 (atext can't contain two neighbo...
[packages/libsrs_alt.git] / libsrs_alt.spec
1 Summary:        Implementation of the SRS specification
2 Summary(pl.UTF-8):      Implementacja specyfikacji SRS
3 Name:           libsrs_alt
4 Version:        1.0
5 Release:        5
6 License:        GPL
7 Group:          Libraries
8 Source0:        http://opsec.eu/src/srs/%{name}-%{version}.tar.bz2
9 # Source0-md5:  6d1539eeba08dffe83f92ac38e229dda
10 URL:            http://opsec.eu/src/srs/
11 BuildRequires:  autoconf >= 2.59
12 BuildRequires:  automake
13 BuildRequires:  libstdc++-devel
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Libsrs_alt is an implementation of the SRS specification as found at
19 http://spf.pobox.com/srs.html.
20
21 %description -l pl.UTF-8
22 Libsrs_alt jest implementacją specyfikacji SRS, która znajduje się pod
23 adresem http://spf.pobox.com/srs.html.
24
25 %package devel
26 Summary:        Header files for libsrs_alt library
27 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libsrs_alt
28 Group:          Development/Libraries
29 Requires:       %{name} = %{version}-%{release}
30
31 %description devel
32 Header files for libsrs_alt library.
33
34 %description devel -l pl.UTF-8
35 Pliki nagłówkowe biblioteki libsrs_alt.
36
37 %package static
38 Summary:        Static libsrs_alt library
39 Summary(pl.UTF-8):      Statyczna biblioteka libsrs_alt
40 Group:          Development/Libraries
41 Requires:       %{name}-devel = %{version}-%{release}
42
43 %description static
44 Static libsrs_alt library.
45
46 %description static -l pl.UTF-8
47 Statyczna biblioteka libsrs_alt.
48
49 %prep
50 %setup -q
51
52 %build
53 %{__libtoolize}
54 %{__aclocal}
55 %{__autoconf}
56 %{__automake}
57 %configure
58 %{__make}
59
60 %install
61 rm -rf $RPM_BUILD_ROOT
62
63 %{__make} install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 %clean
67 rm -rf $RPM_BUILD_ROOT
68
69 %post   -p /sbin/ldconfig
70 %postun -p /sbin/ldconfig
71
72 %files
73 %defattr(644,root,root,755)
74 %doc AUTHORS ChangeLog NEWS
75 %attr(755,root,root) %{_bindir}/srs
76 %attr(755,root,root) %{_libdir}/libsrs_alt.so.*.*.*
77 %attr(755,root,root) %ghost %{_libdir}/libsrs_alt.so.1
78
79 %files devel
80 %defattr(644,root,root,755)
81 %attr(755,root,root) %{_libdir}/libsrs_alt.so
82 %{_libdir}/libsrs_alt.la
83 %{_includedir}/*.h
84
85 %files static
86 %defattr(644,root,root,755)
87 %{_libdir}/libsrs_alt.a
This page took 0.099449 seconds and 4 git commands to generate.