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