]> git.pld-linux.org Git - packages/libebml.git/blame_incremental - libebml.spec
- release 3 (by relup.sh)
[packages/libebml.git] / libebml.spec
... / ...
CommitLineData
1Summary: Extensible Binary Meta Language access library
2Summary(pl.UTF-8): Biblioteka dostępu rozszerzalnego metajęzyka binarnego
3Name: libebml
4Version: 1.3.1
5Release: 3
6License: LGPL v2.1+
7Group: Libraries
8Source0: http://dl.matroska.org/downloads/libebml/%{name}-%{version}.tar.bz2
9# Source0-md5: 2d5a0e502fabedfded2a890c6b5513a5
10URL: http://www.matroska.org/
11BuildRequires: libstdc++-devel
12BuildRequires: rpmbuild(macros) >= 1.553
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16Extensible Binary Meta Language access library is a library for
17reading and writing files with the Extensible Binary Meta Language, a
18binary pendant to XML.
19
20%description -l pl.UTF-8
21Biblioteka rozszerzalnego metajęzyka binarnego (Extensible Binary Meta
22Language, w skrócie EBML) umożliwia czytanie i zapisywanie plików w
23tym metajęzyku, będącym binarnym uzupełnieniem XML-a.
24
25%package devel
26Summary: Header files for Extensible Binary Meta Language library
27Summary(pl.UTF-8): Nagłówki biblioteki rozszerzalnego metajęzyka binarnego
28Group: Development/Libraries
29Requires: %{name} = %{version}-%{release}
30Requires: libstdc++-devel
31
32%description devel
33Header files for Extensible Binary Meta Language library.
34
35%description devel -l pl.UTF-8
36Nagłówki biblioteki rozszerzalnego metajęzyka binarnego.
37
38%package static
39Summary: Static version of Extensible Binary Meta Language library
40Summary(pl.UTF-8): Statyczna wersja biblioteki rozszerzalnego metajęzyka binarnego
41Group: Development/Libraries
42Requires: %{name}-devel = %{version}-%{release}
43
44%description static
45Static version of Extensible Binary Meta Language library.
46
47%description static -l pl.UTF-8
48Statyczna wersja biblioteki rozszerzalnego metajęzyka binarnego.
49
50%prep
51%setup -q
52
53%build
54%configure
55
56%{__make}
57
58%install
59rm -rf $RPM_BUILD_ROOT
60
61%{__make} install \
62 DESTDIR=$RPM_BUILD_ROOT
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%post -p /sbin/ldconfig
68%postun -p /sbin/ldconfig
69
70%files
71%defattr(644,root,root,755)
72%doc ChangeLog
73%attr(755,root,root) %{_libdir}/libebml.so.*.*.*
74%attr(755,root,root) %ghost %{_libdir}/libebml.so.4
75
76%files devel
77%defattr(644,root,root,755)
78%attr(755,root,root) %{_libdir}/libebml.so
79%{_libdir}/libebml.la
80%{_includedir}/ebml
81%{_pkgconfigdir}/libebml.pc
82
83%files static
84%defattr(644,root,root,755)
85%{_libdir}/libebml.a
This page took 0.037815 seconds and 4 git commands to generate.