diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-10-29 20:30:22 -0700 |
---|---|---|
committer | Philippe Coval <philippe.coval@open.eurogiciel.org> | 2014-11-28 16:51:05 +0100 |
commit | c353604a2bef3ed9c8602cc4d488bfdccd97b7da (patch) | |
tree | f8d9b968149332ed72b38016977b11903f28440f | |
parent | 99c96908f8682106575fab48ce6780f73a100026 (diff) | |
download | automake-c353604a2bef3ed9c8602cc4d488bfdccd97b7da.tar.gz automake-c353604a2bef3ed9c8602cc4d488bfdccd97b7da.tar.bz2 automake-c353604a2bef3ed9c8602cc4d488bfdccd97b7da.zip |
added packaging
-rw-r--r-- | packaging/automake-rpmlintrc | 4 | ||||
-rw-r--r-- | packaging/automake.spec | 59 |
2 files changed, 63 insertions, 0 deletions
diff --git a/packaging/automake-rpmlintrc b/packaging/automake-rpmlintrc new file mode 100644 index 000000000..53e59b8e6 --- /dev/null +++ b/packaging/automake-rpmlintrc @@ -0,0 +1,4 @@ +# This line is mandatory to access the configuration functions +from Config import * + +addFilter("automake.* devel-file-in-non-devel-package") diff --git a/packaging/automake.spec b/packaging/automake.spec new file mode 100644 index 000000000..7f91ed376 --- /dev/null +++ b/packaging/automake.spec @@ -0,0 +1,59 @@ +Name: automake +BuildRequires: autoconf >= 2.69 +BuildRequires: bison +BuildRequires: gcc-c++ +BuildRequires: xz +Requires: autoconf >= 2.69 +Version: 1.12.1 +Release: 0 +Summary: A Program for Automatically Generating GNU-Style Makefile.in Files +License: GPL-2.0+ +Group: Development/Tools/Building +Url: http://www.gnu.org/software/automake +Source: automake-%{version}.tar.xz +Source1: automake-rpmlintrc +BuildArch: noarch + +%description +Automake is a tool for automatically generating "Makefile.in" files +from "Makefile.am" files. "Makefile.am" is a series of "make" macro +definitions (with rules occasionally thrown in). The generated +"Makefile.in" files are compatible with the GNU Makefile standards. + +%prep +%setup -q -n automake-%{version} + +%build +sh bootstrap.sh +%configure --docdir=%{_docdir}/%{name} +make %{?_smp_mflags} + + +%install +make install DESTDIR=%{buildroot} +mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal +echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist +ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist +mkdir -p %{buildroot}%{_mandir}/man1 +install -m644 COPYING %{buildroot}%{_docdir}/%{name} +# info's dir file is not auto ignored on some systems +rm -rf %{buildroot}%{_infodir}/dir + +%post +%install_info --info-dir=%{_infodir} %{_infodir}/automake.info.gz + +%postun +%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz + + +%files +%defattr(-,root,root) +%doc %{_docdir}/%{name} +%{_bindir}/* +%doc %{_infodir}/*.gz +%doc %{_mandir}/man1/* +%{_datadir}/aclocal* +%{_datadir}/automake-* +%config /etc/aclocal_dirlist + +%changelog |