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

Revision 7583, 3.3 KB checked in by Takemikaduchi, 11 years ago (diff)

new upstream release

Line 
1Summary:        Library to create ISO 9660 disk images
2Summary(ja):    ISO9660 ディスクイメージを作成するためのライブラリ
3
4Name:           libisofs
5Version:        1.2.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 Mar 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.8-1
77- new upstream release
78
79* Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
80- new upstream release
81
82* Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.12-2
83- rebuilt with rpm-4.8.1 for pkg-config
84
85* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.12-1
86- initial build for Vine Linux
87
88* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.12-2
89- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
90
91* Sun Jan 25 2009 Denis Leroy <denis@poolshark.org> - 0.6.12-1
92- Update to 0.6.12 upstream version
93
94* Wed Aug  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.6.6-2
95- fix license tag
96
97* Wed Jun 11 2008 Denis Leroy <denis@poolshark.org> - 0.6.6-1
98- Update to upstream 0.6.6
99
100* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.8-3
101- Autorebuild for GCC 4.3
102
103* Wed Oct 10 2007 Jesse Keating <jkeating@redhat.com> - 0.2.8-2
104- Rebuild for BuildID
105
106* Fri Aug 10 2007 Denis Leroy <denis@poolshark.org> - 0.2.8-1
107- Update to 0.2.8
108- Fixed Source URL
109
110* Mon Jan 08 2007 Jesse Keating <jkeating@redhat.com> - 0.2.4-2
111- Move html docs to -devel
112- Change urls to new upstream location
113
114* Wed Jan 03 2007 Jesse Keating <jkeating@redhat.com> - 0.2.4-1
115- New upstream release to fix some issues
116
117* Tue Jan 02 2007 Jesse Keating <jkeating@redhat.com> - 0.2.3-2
118- Fix some issues brought up during review
119
120* Tue Jan 02 2007 Jesse Keating <jkeating@redhat.com> - 0.2.3-1
121- Initial release split off of libburn package.
122- Disable docs for now, will be fixed in future upstream release
Note: See TracBrowser for help on using the repository browser.