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

Revision 12322, 3.3 KB checked in by tomop, 4 years ago (diff)

updated 13 packages

cpio-2.13-1

curl-7.68.0-1

e2fsprogs-1.45.5-1

firefox-68.5.0-1

flex-2.6.4-1

libarchive-3.4.2-1

libogg-1.3.4-1

libssh-0.9.3-1

libtasn1-4.16.0-1

libvorbis-1.3.6-1

nghttp2-1.40.0-1

thunderbird-68.5.0-1

vorbis-tools-1.4.0-5

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