LFS-RPM/SPECS/popt.spec

42 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-05-31 01:17:51 -04:00
#TARBALL: ftp://anduin.linuxfromscratch.org/BLFS/popt/popt-1.16.tar.gz
2019-05-24 08:27:40 -04:00
#MD5SUM: 3743beefa3dd6247a73f8f7a32c14c33;SOURCES/popt-1.16.tar.gz
#-----------------------------------------------------------------------------
Summary: The popt package contains the popt libraries which are used by some programs parse command-line options.
Name: popt
Version: 1.16
Release: 1
License: GPL
2020-05-31 01:17:51 -04:00
URL: ftp://anduin.linuxfromscratch.org/BLFS/%{name}/
2019-05-24 08:27:40 -04:00
Group: BLFS/General_Libraries
2020-05-31 01:17:51 -04:00
Vendor: Elizabeth
Source0: ftp://anduin.linuxfromscratch.org/BLFS/%{name}/%{name}-%{version}.tar.gz
2019-05-24 08:27:40 -04:00
Requires: filesystem
%description
The popt package contains the popt libraries which are used by some programs parse command-line options.
#-----------------------------------------------------------------------------
%prep
%setup -q -n %{name}-%{version}
%build
./configure \
--prefix=%{_prefix} \
--disable-static
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
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}/man3/*
2019-05-24 08:27:40 -04:00
#-----------------------------------------------------------------------------
%changelog
* Mon Jan 01 2018 baho-utot <baho-utot@columbus.rr.com> 1.16-1
- LFS-8.1