2019-05-24 08:27:40 -04:00
|
|
|
#TARBALL: http://anduin.linuxfromscratch.org/LFS/bzip2-1.0.6.tar.gz
|
|
|
|
#MD5SUM: 00b516f4704d4a7cb50a1d97e6e8e15b;SOURCES/bzip2-1.0.6.tar.gz
|
|
|
|
#TARBALL: http://www.linuxfromscratch.org/patches/lfs/8.2/bzip2-1.0.6-install_docs-1.patch
|
|
|
|
#MD5SUM: 6a5ac7e89b791aae556de0f745916f7f;SOURCES/bzip2-1.0.6-install_docs-1.patch
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
Summary: The Bzip2 package contains programs for compressing and decompressing files
|
|
|
|
Name: bzip2
|
|
|
|
Version: 1.0.6
|
|
|
|
Release: 1
|
|
|
|
License: Other
|
|
|
|
URL: Any
|
|
|
|
Group: LFS/Base
|
|
|
|
Vendor: Elizabeth
|
|
|
|
Source0: http://www.%{name}.org/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
Patch0: http://www.linuxfromscratch.org/patches/lfs/8.1/%{name}-%{version}-install_docs-1.patch
|
|
|
|
Requires: filesystem
|
|
|
|
%description
|
|
|
|
The Bzip2 package contains programs for compressing and decompressing files
|
|
|
|
Compressing text files with bzip2 yields a much better compression percentage
|
|
|
|
than with the traditional gzip.
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{NAME}-%{VERSION}
|
|
|
|
%patch0 -p1
|
|
|
|
sed -i 's@\(ln -s -f \)$(PREFIX)/bin/@\1@' Makefile
|
|
|
|
sed -i "s@(PREFIX)/man@(PREFIX)/share/man@g" Makefile
|
|
|
|
%build
|
|
|
|
make -f Makefile-libbz2_so
|
|
|
|
make clean
|
|
|
|
make
|
|
|
|
%install
|
|
|
|
make PREFIX=%{buildroot}/usr install
|
|
|
|
install -vdm 755 %{buildroot}/bin
|
|
|
|
install -vdm 755 %{buildroot}/lib
|
|
|
|
install -vdm 755 %{buildroot}%{_libdir}
|
|
|
|
install -vdm 755 %{buildroot}%{_bindir}
|
|
|
|
cp -v bzip2-shared %{buildroot}/bin/bzip2
|
|
|
|
cp -av libbz2.so* %{buildroot}/lib
|
|
|
|
ln -sv ../../lib/libbz2.so.1.0 %{buildroot}%{_libdir}/libbz2.so
|
|
|
|
rm -v %{buildroot}%{_bindir}/{bunzip2,bzcat,bzip2}
|
|
|
|
ln -sv bzip2 %{buildroot}/bin/bunzip2
|
|
|
|
ln -sv bzip2 %{buildroot}/bin/bzcat
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Copy license/copying file
|
|
|
|
install -D -m644 LICENSE %{buildroot}/usr/share/licenses/%{name}/LICENSE
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create file list
|
|
|
|
# rm %{buildroot}%{_infodir}/dir
|
|
|
|
find %{buildroot} -name '*.la' -delete
|
|
|
|
find "${RPM_BUILD_ROOT}" -not -type d -print > filelist.rpm
|
|
|
|
sed -i "s|^${RPM_BUILD_ROOT}||" filelist.rpm
|
|
|
|
sed -i '/man\/man/d' filelist.rpm
|
|
|
|
sed -i '/\/usr\/share\/info/d' filelist.rpm
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
%files -f filelist.rpm
|
|
|
|
%defattr(-,root,root)
|
2019-05-25 21:36:26 -04:00
|
|
|
%{_mandir}/man1/*
|
2019-05-24 08:27:40 -04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
%changelog
|
|
|
|
* Tue Jan 09 2018 baho-utot <baho-utot@columbus.rr.com> 1.0.6-1
|
|
|
|
- Initial build. First version
|