libarchive-vl.spec 3.2 KB

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