libburn-vl.spec 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. Summary: Library for reading, mastering and writing optical discs
  2. Summary(ja): 光学ディスクの読み込み・マスタリング・書き込みを行うライブラリ
  3. Name: libburn
  4. Version: 1.5.0
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: GPLv2
  8. URL: http://libburnia-project.org/
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. Source0: http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: libtool intltool gettext doxygen graphviz
  14. %description
  15. Libburn is an open-source library for reading, mastering and writing
  16. optical discs. For now this means only CD-R and CD-RW.
  17. The project comprises of several more or less interdependent parts which
  18. together strive to be a usable foundation for application development.
  19. These are libraries, language bindings, and middleware binaries which emulate
  20. classical (and valuable) Linux tools.
  21. %package devel
  22. Summary: Development files for %{name}
  23. Summary(ja): %{name} の開発ファイル
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. Requires: pkgconfig
  27. %description devel
  28. The %{name}-devel package contains libraries and header files for
  29. developing applications that use %{name}.
  30. %package -n cdrskin
  31. Summary: Limited cdrecord compatibility wrapper to ease migration to libburn
  32. Summary(ja): libburn への移行を容易にするための限定的な cdrecord 互換ラッパー
  33. Group: Applications/Multimedia
  34. Requires: %{name} = %{version}-%{release}
  35. %description -n cdrskin
  36. A limited cdrecord compatibility wrapper which allows to use some libburn
  37. features from the command line.
  38. %prep
  39. %setup -q
  40. %build
  41. %configure --disable-static
  42. make %{?_smp_mflags}
  43. doxygen doc/doxygen.conf
  44. %install
  45. rm -rf $RPM_BUILD_ROOT
  46. make install DESTDIR=$RPM_BUILD_ROOT
  47. install -d $RPM_BUILD_ROOT%{_bindir}
  48. install -m 0755 cdrskin/.libs/cdrskin $RPM_BUILD_ROOT%{_bindir}/cdrskin
  49. install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html
  50. install -m 0644 doc/html/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html/
  51. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  52. %clean
  53. rm -rf $RPM_BUILD_ROOT
  54. %post -p /sbin/ldconfig
  55. %postun -p /sbin/ldconfig
  56. %files
  57. %defattr(-,root,root,-)
  58. %license COPYING COPYRIGHT
  59. %doc AUTHORS README
  60. %{_libdir}/%{name}*.so.*
  61. %files devel
  62. %defattr(-,root,root,-)
  63. %doc doc/html
  64. %{_includedir}/%{name}
  65. %{_libdir}/%{name}*.so
  66. %{_libdir}/pkgconfig/%{name}*.pc
  67. %files -n cdrskin
  68. %defattr(-,root,root,-)
  69. %{_mandir}/*/*
  70. %{_bindir}/cdrskin
  71. %changelog
  72. * Mon Sep 16 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.0-1
  73. - new upstream release.
  74. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.8-1
  75. - new upstream release
  76. * Sun Mar 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.8-1
  77. - new upstream release
  78. * Sat Jun 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
  79. - new upstream release
  80. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-2
  81. - rebuild with rpm-4.8.1 for pkg-config file
  82. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.0-1
  83. - initial build for Vine Linux
  84. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-3
  85. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  86. * Sat Jan 24 2009 Denis Leroy <denis@poolshark.org> - 0.6.0-2
  87. - Updating to pl01 tarball from upstream
  88. - Fixed project URL
  89. * Wed Jan 07 2009 Adel Gadllah <adel.gadllah@gmail.com> - 0.6.0-1
  90. - New upstream version
  91. * Tue Aug 5 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.4.8-2
  92. - fix license tag
  93. * Wed Jun 11 2008 Denis Leroy <denis@poolshark.org> - 0.4.8-1
  94. - Update to upstream 0.4.8
  95. * Thu Feb 14 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.0-2
  96. - Autorebuild for GCC 4.3
  97. * Thu Dec 13 2007 Denis Leroy <denis@poolshark.org> - 0.4.0-1
  98. - Update to 0.4.0
  99. * Wed Oct 10 2007 Jesse Keating <jkeating@redhat.com> - 0.3.8-2
  100. - Rebuild for BuildID
  101. * Fri Aug 10 2007 Denis Leroy <denis@poolshark.org> - 0.3.8-1
  102. - Update to upstream 0.3.8
  103. - Fixed project URL
  104. * Sun Mar 25 2007 Denis Leroy <denis@poolshark.org> - 0.2.6.3-3
  105. - Fixed unowned include directory (#233860)
  106. * Tue Mar 20 2007 Denis Leroy <denis@poolshark.org> - 0.2.6.3-2
  107. - Moved documentation into devel package, #228372
  108. - Updated source URL to new upstream location
  109. * Tue Jan 02 2007 Jesse Keating <jkeating@redhat.com> - 0.2.6.3-1
  110. - Update to 0.2.6.3
  111. - Remove libisofs stuff as it's packaged seperately now.
  112. - Add a manpage for cdrskin
  113. * Sat Oct 21 2006 Jesse Keating <jkeating@redhat.com> - 0.2-2-2
  114. - Point to a real URL in source, now that we have a tarball
  115. * Fri Oct 20 2006 Jesse Keating <jkeating@redhat.com> - 0.2-2-1
  116. - 0.2.2 release
  117. * Tue Sep 12 2006 Jesse Keating <jkeating@redhat.com> - 0.2-5.20060808svn
  118. - Create doxygen docs
  119. * Fri Sep 8 2006 Jesse Keating <jkeating@redhat.com> - 0.2-4.20060808svn
  120. - rebuild with new snapshot
  121. * Sun Aug 27 2006 Jesse Keating <jkeating@redhat.com> - 0.2-3.20060823svn
  122. - don't install dupe headers in -devel packages
  123. - libisofs requires libburn devel for directory ownership
  124. * Sun Aug 27 2006 Jesse Keating <jkeating@redhat.com> - 0.2-2.20060823svn
  125. - Fix cdrskin require
  126. - Fix tabs
  127. - Added doc files
  128. * Wed Aug 23 2006 Jesse Keating <jkeating@redhat.com> - 0.2-1.20060823svn
  129. - Initial package for review