]> git.pld-linux.org Git - packages/libisofs.git/blob - libisofs.spec
131edd30b1374c22e8d9d67e12b6d6d615e975a1
[packages/libisofs.git] / libisofs.spec
1 Summary:        Library to pack up hard disk files and directories into a ISO 9660 disk image
2 Summary(pl.UTF-8):      Biblioteka do pakowania plików i katalogów w obrazy ISO 9660
3 Name:           libisofs
4 Version:        1.0.4
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz
9 # Source0-md5:  5a8abcec98c312f5c3550cb66754eb66
10 URL:            http://libburnia.pykix.org/
11 BuildRequires:  acl-devel
12 BuildRequires:  attr-devel
13 BuildRequires:  libjte-devel
14 BuildRequires:  zlib-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %undefine       __cxx
18
19 %description
20 libisofs is the library to pack up hard disk files and directories
21 into a ISO 9660 disk image.
22
23 %description -l pl.UTF-8
24 libisofs to biblioteka do pakowania plików i katalogów z twardego
25 dysku w obrazy ISO 9660.
26
27 %package devel
28 Summary:        Header files for libisofs library
29 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libisofs
30 Group:          Development/Libraries
31 Requires:       %{name} = %{version}-%{release}
32 Requires:       acl-devel
33 Requires:       attr-devel
34 Requires:       libjte-devel
35 Requires:       zlib-devel
36
37 %description devel
38 Header files for libisofs library.
39
40 %description devel -l pl.UTF-8
41 Pliki nagłówkowe biblioteki libisofs.
42
43 %package static
44 Summary:        Static libisofs library
45 Summary(pl.UTF-8):      Statyczna biblioteka libisofs
46 Group:          Development/Libraries
47 Requires:       %{name}-devel = %{version}-%{release}
48
49 %description static
50 Static libisofs library.
51
52 %description static -l pl.UTF-8
53 Statyczna biblioteka libisofs.
54
55 %prep
56 %setup -q
57
58 %build
59 %configure
60 %{__make}
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64
65 %{__make} install \
66         DESTDIR=$RPM_BUILD_ROOT
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %post   -p /sbin/ldconfig
72 %postun -p /sbin/ldconfig
73
74 %files
75 %defattr(644,root,root,755)
76 %doc AUTHORS COPYRIGHT NEWS README Roadmap TODO
77 %attr(755,root,root) %{_libdir}/libisofs.so.*.*.*
78 %attr(755,root,root) %ghost %{_libdir}/libisofs.so.6
79
80 %files devel
81 %defattr(644,root,root,755)
82 %doc doc/Tutorial
83 %attr(755,root,root) %{_libdir}/libisofs.so
84 %{_libdir}/libisofs.la
85 %{_includedir}/libisofs
86 %{_pkgconfigdir}/libisofs-1.pc
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/libisofs.a
This page took 0.059565 seconds and 2 git commands to generate.