source: projects/specs/trunk/lib/liba/libarchive/libarchive-vl.spec @ 11957

Revision 11957, 3.1 KB checked in by tomop, 6 years ago (diff)

libarchive-3.3.3-1

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