libarchive-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. Name: libarchive
  2. Summary: A library for handling streaming archive formats
  3. Version: 3.5.1
  4. Release: 1%{?_dist_release}
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: BSD
  9. URL: https://www.libarchive.org/
  10. Source0: https://www.libarchive.org/downloads/%{name}-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildRequires: bzip2-devel
  13. BuildRequires: libacl-devel
  14. BuildRequires: libattr-devel
  15. BuildRequires: libxml2-devel
  16. BuildRequires: libzstd-devel
  17. BuildRequires: lz4-devel
  18. BuildRequires: openssl-devel
  19. BuildRequires: xz-devel
  20. BuildRequires: zlib-devel
  21. %description
  22. Libarchive is a programming library that can create and read several different
  23. streaming archive formats, including most popular tar variants, several cpio
  24. formats, and both BSD and GNU ar variants. It can also write shar archives and
  25. read ISO9660 CDROM images and ZIP archives.
  26. %package devel
  27. Summary: Development files for %{name}
  28. Group: programming
  29. Requires: %{name} = %{version}-%{release}
  30. %description devel
  31. The %{name}-devel package contains libraries and header files for
  32. developing applications that use %{name}.
  33. %debug_package
  34. %prep
  35. %setup -q
  36. %build
  37. %configure \
  38. --disable-static \
  39. --disable-bsdtar --disable-bsdcpio --disable-bsdcat
  40. make %{?_smp_mflags}
  41. %install
  42. rm -rf $RPM_BUILD_ROOT
  43. make install DESTDIR=$RPM_BUILD_ROOT
  44. #iconv -f latin1 -t utf-8 < NEWS > NEWS.utf8; cp NEWS.utf8 NEWS
  45. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  46. find $RPM_BUILD_ROOT -name cpio.5 -exec rm -f {} ';'
  47. find $RPM_BUILD_ROOT -name mtree.5 -exec rm -f {} ';'
  48. find $RPM_BUILD_ROOT -name tar.5 -exec rm -f {} ';'
  49. %clean
  50. rm -rf $RPM_BUILD_ROOT
  51. %post -p /sbin/ldconfig
  52. %postun -p /sbin/ldconfig
  53. %files
  54. %defattr(-,root,root,-)
  55. %license COPYING
  56. %doc README* NEWS
  57. %{_libdir}/*.so.*
  58. %files devel
  59. %defattr(-,root,root,-)
  60. %doc
  61. %{_includedir}/*
  62. %{_mandir}/*/*
  63. %{_libdir}/*.so
  64. %{_libdir}/pkgconfig/*.pc
  65. %changelog
  66. * Wed Feb 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.1-1
  67. - new upstream release.
  68. * Thu Jul 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.3-1
  69. - new upstream release.
  70. - added BR:lz4-devel.
  71. - added BR:libzstd-devel.
  72. * Sun Feb 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.2-1
  73. - new upstream release.
  74. * Sat Oct 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.0-1
  75. - new upstream release.
  76. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.3-1
  77. - new upstream release.
  78. * Tue Dec 19 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.2-1
  79. - new upstream release.
  80. * Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  81. - new upstream release
  82. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
  83. - update to 3.1.2
  84. * Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.4-1
  85. - new upstream release
  86. * Thu May 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-4
  87. - add BuildRequires: openssl-devel, libxml2-devel
  88. * Thu May 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-3
  89. - rebuild against liblzma.so.5
  90. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-2
  91. - rebuild with rpm-4.8.1 for pkg-config file
  92. * Sun Sep 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.4-1
  93. - new upstream release
  94. * Wed Apr 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.3-1
  95. - new upstream release
  96. - built with new toolchain
  97. * Tue Apr 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.0-1
  98. - new upstream release
  99. * Wed Apr 2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.14-1vl5
  100. - Build for Vine Linux
  101. * Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
  102. - Initial packaging