libarchive-vl.spec 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. Name: libarchive
  2. Summary: A library for handling streaming archive formats
  3. Version: 3.4.3
  4. Release: 1%{?_dist_release}
  5. Group: System Environment/Libraries
  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: Development/Libraries
  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. %prep
  34. %setup -q
  35. %build
  36. %configure \
  37. --disable-static \
  38. --disable-bsdtar --disable-bsdcpio --disable-bsdcat
  39. make %{?_smp_mflags}
  40. %install
  41. rm -rf $RPM_BUILD_ROOT
  42. make install DESTDIR=$RPM_BUILD_ROOT
  43. #iconv -f latin1 -t utf-8 < NEWS > NEWS.utf8; cp NEWS.utf8 NEWS
  44. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  45. find $RPM_BUILD_ROOT -name cpio.5 -exec rm -f {} ';'
  46. find $RPM_BUILD_ROOT -name mtree.5 -exec rm -f {} ';'
  47. find $RPM_BUILD_ROOT -name tar.5 -exec rm -f {} ';'
  48. %clean
  49. rm -rf $RPM_BUILD_ROOT
  50. %post -p /sbin/ldconfig
  51. %postun -p /sbin/ldconfig
  52. %files
  53. %defattr(-,root,root,-)
  54. %license COPYING
  55. %doc README* NEWS
  56. %{_libdir}/*.so.*
  57. %files devel
  58. %defattr(-,root,root,-)
  59. %doc
  60. %{_includedir}/*
  61. %{_mandir}/*/*
  62. %{_libdir}/*.so
  63. %{_libdir}/pkgconfig/*.pc
  64. %changelog
  65. * Thu Jul 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.3-1
  66. - new upstream release.
  67. - added BR:lz4-devel.
  68. - added BR:libzstd-devel.
  69. * Sun Feb 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.2-1
  70. - new upstream release.
  71. * Sat Oct 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.0-1
  72. - new upstream release.
  73. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.3-1
  74. - new upstream release.
  75. * Tue Dec 19 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.2-1
  76. - new upstream release.
  77. * Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  78. - new upstream release
  79. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
  80. - update to 3.1.2
  81. * Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.4-1
  82. - new upstream release
  83. * Thu May 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-4
  84. - add BuildRequires: openssl-devel, libxml2-devel
  85. * Thu May 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-3
  86. - rebuild against liblzma.so.5
  87. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-2
  88. - rebuild with rpm-4.8.1 for pkg-config file
  89. * Sun Sep 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.4-1
  90. - new upstream release
  91. * Wed Apr 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.3-1
  92. - new upstream release
  93. - built with new toolchain
  94. * Tue Apr 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.0-1
  95. - new upstream release
  96. * Wed Apr 2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.14-1vl5
  97. - Build for Vine Linux
  98. * Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
  99. - Initial packaging