54 lines
1.9 KiB
RPMSpec
54 lines
1.9 KiB
RPMSpec
#TARBALL: http://ftp.gnu.org/gnu/bc/bc-1.07.1.tar.gz
|
|
#MD5SUM: cda93857418655ea43590736fc3ca9fc;SOURCES/bc-1.07.1.tar.gz
|
|
#-----------------------------------------------------------------------------
|
|
Summary: The Bc package contains an arbitrary precision numeric processing language
|
|
Name: bc
|
|
Version: 1.07.1
|
|
Release: 1
|
|
License: GPLv3
|
|
URL: http://www.gnu.org
|
|
Group: LFS/Base
|
|
Vendor: Elizabeth
|
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
|
|
Requires: filesystem
|
|
%description
|
|
The Bc package contains an arbitrary precision numeric processing language
|
|
#-----------------------------------------------------------------------------
|
|
%prep
|
|
%setup -q -n %{NAME}-%{VERSION}
|
|
cat > bc/fix-libmath_h <<- EOF
|
|
#! /bin/bash
|
|
sed -e '1 s/^/{"/' -e 's/$/",/' -e '2,$ s/^/"/' -e '$ d' -i libmath.h
|
|
sed -e '$ s/$/0}/' -i libmath.h
|
|
EOF
|
|
sed -i -e '/flex/s/as_fn_error/: ;; # &/' configure
|
|
%build
|
|
./configure \
|
|
--prefix=%{_prefix} \
|
|
--with-readline \
|
|
--mandir=%{_mandir} \
|
|
--infodir=%{_infodir}
|
|
make %{?_smp_mflags}
|
|
%install
|
|
make DESTDIR=%{buildroot} install
|
|
#-----------------------------------------------------------------------------
|
|
# Copy license/copying file
|
|
install -D -m644 COPYING %{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)
|
|
%{_infodir}/*
|
|
%{_mandir}/man1/*
|
|
#-----------------------------------------------------------------------------
|
|
%changelog
|
|
* Tue Jan 09 2018 baho-utot <baho-utot@columbus.rr.com> 1.07.1-1
|
|
- Initial build. First version
|