source: projects/specs/trunk/lib/libi/libisofs/libisofs-vl.spec @ 8758

Revision 8758, 3.4 KB checked in by Takemikaduchi, 10 years ago (diff)

update or rebuild

Line 
1Summary:        Library to create ISO 9660 disk images
2Summary(ja):    ISO9660 ディスクイメージを作成するためのライブラリ
3
4Name:           libisofs
5Version:        1.3.8
6Release:        1%{?_dist_release}
7
8Group:          System Environment/Libraries
9License:        GPLv2
10URL:            http://libburnia-project.org/
11Source0:        http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz
12BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13
14BuildRequires:  libburn-devel doxygen graphviz
15Requires:       libburn
16
17
18%description
19Libisofs is a library to pack up hard disk files and directories into a
20ISO 9660 disk image. This may then be burned to CD via libburn.
21
22
23%package        devel
24Summary:        Development files for %{name}
25Summary(ja):    %{name} の開発ファイル
26Group:          Development/Libraries
27Requires:       %{name} = %{version}-%{release}
28Requires:       pkgconfig
29
30%description    devel
31The libisofs-devel package contains libraries and header files for
32developing applications that use libisofs.
33
34
35%prep
36%setup -q
37
38
39%build
40%configure --disable-static
41make %{?_smp_mflags}
42doxygen doc/doxygen.conf
43
44
45%install
46rm -rf $RPM_BUILD_ROOT
47make install DESTDIR=$RPM_BUILD_ROOT
48install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html
49install -m 0644 doc/html/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html/
50find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
51
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56
57%post -p /sbin/ldconfig
58
59%postun -p /sbin/ldconfig
60
61
62%files
63%defattr(-,root,root,-)
64%doc AUTHORS COPYING COPYRIGHT README NEWS
65%{_libdir}/%{name}*.so.*
66
67%files devel
68%defattr(-,root,root,-)
69%doc doc/html
70%{_includedir}/%{name}
71%{_libdir}/libisofs*.so
72%{_libdir}/pkgconfig/libisofs*.pc
73 
74
75%changelog
76* Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.8-1
77- new upstream release
78
79* Sun Mar 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.8-1
80- new upstream release
81
82* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
83- new upstream release
84
85* Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.12-2
86- rebuilt with rpm-4.8.1 for pkg-config
87
88* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.12-1
89- initial build for Vine Linux
90
91* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.12-2
92- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
93
94* Sun Jan 25 2009 Denis Leroy <denis@poolshark.org> - 0.6.12-1
95- Update to 0.6.12 upstream version
96
97* Wed Aug  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.6.6-2
98- fix license tag
99
100* Wed Jun 11 2008 Denis Leroy <denis@poolshark.org> - 0.6.6-1
101- Update to upstream 0.6.6
102
103* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.8-3
104- Autorebuild for GCC 4.3
105
106* Wed Oct 10 2007 Jesse Keating <jkeating@redhat.com> - 0.2.8-2
107- Rebuild for BuildID
108
109* Fri Aug 10 2007 Denis Leroy <denis@poolshark.org> - 0.2.8-1
110- Update to 0.2.8
111- Fixed Source URL
112
113* Mon Jan 08 2007 Jesse Keating <jkeating@redhat.com> - 0.2.4-2
114- Move html docs to -devel
115- Change urls to new upstream location
116
117* Wed Jan 03 2007 Jesse Keating <jkeating@redhat.com> - 0.2.4-1
118- New upstream release to fix some issues
119
120* Tue Jan 02 2007 Jesse Keating <jkeating@redhat.com> - 0.2.3-2
121- Fix some issues brought up during review
122
123* Tue Jan 02 2007 Jesse Keating <jkeating@redhat.com> - 0.2.3-1
124- Initial release split off of libburn package.
125- Disable docs for now, will be fixed in future upstream release
Note: See TracBrowser for help on using the repository browser.