]> git.pld-linux.org Git - packages/libraw1394.git/blame_incremental - libraw1394.spec
- more specific URL
[packages/libraw1394.git] / libraw1394.spec
... / ...
CommitLineData
1Summary: Interface to Linux IEEE-1394 subsystem
2Summary(pl.UTF-8): Biblioteka do obsługi podsystemu IEEE-1394
3Name: libraw1394
4Version: 2.1.2
5Release: 1
6License: LGPL v2.1+
7Group: Libraries
8Source0: https://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.xz
9# Source0-md5: 118060584c04f1aa5e29c4d22c1c235a
10URL: https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394
11BuildRequires: autoconf >= 2.50
12BuildRequires: automake
13BuildRequires: docbook-dtd412-xml
14BuildRequires: docbook-style-xsl
15BuildRequires: docbook-utils
16BuildRequires: libtool
17BuildRequires: tar >= 1:1.22
18BuildRequires: xz
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
22libraw1394 is the only supported interface to the kernel side raw1394
23of the Linux IEEE-1394 subsystem, which provides direct access to the
24connected 1394 buses to user space. Through libraw1394/raw1394,
25applications can directly send to and receive from other nodes without
26requiring a kernel driver for the protocol in question.
27
28%description -l pl.UTF-8
29libraw1394 jest jedynym supportowanym po stronie kernela linuksowego
30raw1394 subsystemu IEEE-1394, który zapewnia bezpośredni dostęp do
31szyn 1394 w przestrzeni użytkownika. Poprzez libraw1394/raw1394
32aplikacje mogą bezpośrednio wysyłać i otrzymywać z innych końcówek bez
33potrzeby kernelowego drivera w zapytaniu.
34
35%package devel
36Summary: libraw1394 header files
37Summary(pl.UTF-8): Pliki nagłówkowe biblioteki libraw1394
38Group: Development/Libraries
39Requires: %{name} = %{version}-%{release}
40
41%description devel
42libraw1394 devel package.
43
44%description devel -l pl.UTF-8
45Pliki nagłówkowe biblioteki libraw1394.
46
47%package static
48Summary: libraw1394 static library
49Summary(pl.UTF-8): Statyczna biblioteka do obsługi formatu IEEE-1394
50Group: Development/Libraries
51Requires: %{name}-devel = %{version}-%{release}
52
53%description static
54libraw1394 static librawy.
55
56%description static -l pl.UTF-8
57Statyczna biblioteka libraw1394.
58
59%prep
60%setup -q
61
62%build
63%{__libtoolize}
64%{__aclocal}
65%{__autoheader}
66%{__autoconf}
67%{__automake}
68%configure
69%{__make}
70
71%{__make} -C doc htmldoc
72
73%install
74rm -rf $RPM_BUILD_ROOT
75
76%{__make} install \
77 DESTDIR=$RPM_BUILD_ROOT
78
79%clean
80rm -rf $RPM_BUILD_ROOT
81
82%post -p /sbin/ldconfig
83%postun -p /sbin/ldconfig
84
85%files
86%defattr(644,root,root,755)
87%doc AUTHORS ChangeLog NEWS README
88%attr(755,root,root) %{_bindir}/dumpiso
89%attr(755,root,root) %{_bindir}/sendiso
90%attr(755,root,root) %{_bindir}/testlibraw
91%attr(755,root,root) %{_libdir}/libraw1394.so.*.*.*
92%attr(755,root,root) %ghost %{_libdir}/libraw1394.so.11
93%{_mandir}/man1/dumpiso.1*
94%{_mandir}/man1/sendiso.1*
95%{_mandir}/man1/testlibraw.1*
96%{_mandir}/man5/isodump.5*
97
98%files devel
99%defattr(644,root,root,755)
100%doc doc/libraw1394/*
101%attr(755,root,root) %{_libdir}/libraw1394.so
102%{_libdir}/libraw1394.la
103%{_includedir}/libraw1394
104%{_pkgconfigdir}/libraw1394.pc
105
106%files static
107%defattr(644,root,root,755)
108%{_libdir}/libraw1394.a
This page took 0.07709 seconds and 5 git commands to generate.