63 lines
2.1 KiB
RPMSpec
63 lines
2.1 KiB
RPMSpec
Name: autoconf2.13
|
|
Version: 2.13
|
|
Release: 4mamba
|
|
Summary: A GNU tool for automatically configuring source code
|
|
Group: Development/Tools
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: http://www.gnu.org/directory/GNU/autoconf.html
|
|
Source: ftp://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz
|
|
License: GPL
|
|
BuildArch: noarch
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: perl-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
GNU's Autoconf is a tool for configuring source code and Makefiles.
|
|
Using Autoconf, programmers can create portable and configurable packages, since the person building the package is allowed to specify various configuration options.
|
|
|
|
You should install Autoconf if you are developing software and you'd like to use it to create shell scripts which will configure your source code packages.
|
|
If you are installing Autoconf, you will also need to install the GNU m4 package.
|
|
|
|
Note that the Autoconf package is not required for the end user who may be configuring software with an Autoconf-generated script; Autoconf is only required for the generation of the scripts, not their use.
|
|
|
|
%prep
|
|
%setup -q -n autoconf-%{version}
|
|
|
|
%build
|
|
%configure
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%makeoldinstall
|
|
|
|
find %{buildroot}%{_bindir}/* -exec mv {} {}-%{version} \;
|
|
|
|
rm -rf %{buildroot}%{_infodir}
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/*
|
|
%dir %{_datadir}/autoconf
|
|
%{_datadir}/autoconf/*
|
|
|
|
%changelog
|
|
* Fri Aug 02 2013 Automatic Build System <autodist@mambasoft.it> 2.13-4mamba
|
|
- automatic rebuild by autodist
|
|
|
|
* Sat Jun 13 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 2.13-3mamba
|
|
- specfile updated and rebuilt
|
|
|
|
* Mon Oct 10 2005 Davide Madrisan <davide.madrisan@qilinux.it> 2.13-2qilnx
|
|
- specfile fixes: use rpm macros, buildarch is now noarch
|
|
|
|
* Tue May 13 2003 Silvan Calarco <silvan.calarco@qinet.it> 2.13-1qilnx
|
|
- first build of compatibility version 2.13
|