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

Revision 6299, 3.2 KB checked in by Takemikaduchi, 12 years ago (diff)

libburn, libisofs, xorg-x11-drv-ati: new upstream release
others: new package

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