automatic rebuild by autodist [release 0.98-3mamba;Mon Oct 30 2023]
This commit is contained in:
parent
ae0020d68b
commit
13129cc64d
38
fastjar.spec
38
fastjar.spec
@ -1,12 +1,12 @@
|
|||||||
Name: fastjar
|
Name: fastjar
|
||||||
Version: 0.98
|
Version: 0.98
|
||||||
Release: 1mamba
|
Release: 3mamba
|
||||||
Summary: An implementation of Sun's jar utility that comes with the JDK
|
Summary: An implementation of Sun's jar utility that comes with the JDK
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://sourceforge.net/projects/fastjar
|
URL: https://sourceforge.net/projects/fastjar
|
||||||
Source: http://download.savannah.nongnu.org/releases/fastjar/fastjar-%{version}.tar.gz
|
Source: http://download.savannah.nongnu.org/releases/fastjar/fastjar-%{version}.tar.gz
|
||||||
Patch0: fastjar-0.93-gcc34.patch
|
Patch0: fastjar-0.93-gcc34.patch
|
||||||
Patch1: fastjar-0.97-segfault.patch
|
Patch1: fastjar-0.97-segfault.patch
|
||||||
@ -17,7 +17,6 @@ BuildRequires: glibc-devel
|
|||||||
BuildRequires: libz-devel
|
BuildRequires: libz-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
Requires(post):%{__install_info}
|
Requires(post):%{__install_info}
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Fastjar is an implementation of Sun's jar utility that comes with the JDK,
|
Fastjar is an implementation of Sun's jar utility that comes with the JDK,
|
||||||
@ -28,8 +27,7 @@ Group: Development/Tools
|
|||||||
Summary: grepjar - search files in a jar file for a pattern
|
Summary: grepjar - search files in a jar file for a pattern
|
||||||
|
|
||||||
%description -n grepjar
|
%description -n grepjar
|
||||||
The grepjar program can be used to search files in a jar file for a
|
The grepjar program can be used to search files in a jar file for a pattern.
|
||||||
pattern.
|
|
||||||
|
|
||||||
%package manual
|
%package manual
|
||||||
Group: Documentation
|
Group: Documentation
|
||||||
@ -37,14 +35,15 @@ Summary: %{name} documentation
|
|||||||
|
|
||||||
%description manual
|
%description manual
|
||||||
Fastjar is an implementation of Sun's jar utility that comes with the JDK.
|
Fastjar is an implementation of Sun's jar utility that comes with the JDK.
|
||||||
|
|
||||||
This package contains %{name} documentation in different formats (html,pdf,dvi,ps).
|
This package contains %{name} documentation in different formats (html,pdf,dvi,ps).
|
||||||
|
|
||||||
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
#%patch0 -p1
|
#%patch0 -p1
|
||||||
#%patch1 -p1
|
#%patch1 -p1
|
||||||
%patch2 -p1
|
%patch 2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
@ -52,6 +51,7 @@ This package contains %{name} documentation in different formats (html,pdf,dvi,p
|
|||||||
--prefix=%{_prefix} \
|
--prefix=%{_prefix} \
|
||||||
--mandir=%{_mandir} \
|
--mandir=%{_mandir} \
|
||||||
--infodir=%{_infodir}
|
--infodir=%{_infodir}
|
||||||
|
|
||||||
%make
|
%make
|
||||||
%make html
|
%make html
|
||||||
%make pdf
|
%make pdf
|
||||||
@ -62,6 +62,8 @@ This package contains %{name} documentation in different formats (html,pdf,dvi,p
|
|||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
|
||||||
|
rm -f %{buildroot}%{_infodir}/dir
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
@ -74,20 +76,26 @@ This package contains %{name} documentation in different formats (html,pdf,dvi,p
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/fastjar
|
%{_bindir}/fastjar
|
||||||
%{_mandir}/man1/fastjar.1.gz
|
%{_mandir}/man1/fastjar.1*
|
||||||
%{_infodir}/fastjar.info.gz
|
%{_infodir}/fastjar.info*
|
||||||
%doc fastjar.dvi fastjar.html
|
%doc AUTHORS COPYING
|
||||||
%doc fastjar.pdf fastjar.ps
|
#% doc fastjar.dvi fastjar.html
|
||||||
%doc AUTHORS CHANGES COPYING
|
#% doc fastjar.pdf fastjar.ps
|
||||||
%doc ChangeLog CHANGES INSTALL
|
#% doc ChangeLog CHANGES INSTALL
|
||||||
%doc NEWS README
|
#% doc NEWS README
|
||||||
|
|
||||||
%files -n grepjar
|
%files -n grepjar
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/grepjar
|
%{_bindir}/grepjar
|
||||||
%{_mandir}/man1/grepjar.1.gz
|
%{_mandir}/man1/grepjar.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 30 2023 Automatic Build System <autodist@mambasoft.it> 0.98-3mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
|
* Sun Oct 29 2023 Automatic Build System <autodist@mambasoft.it> 0.98-2mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
* Mon Nov 28 2011 Automatic Build System <autodist@mambasoft.it> 0.98-1mamba
|
* Mon Nov 28 2011 Automatic Build System <autodist@mambasoft.it> 0.98-1mamba
|
||||||
- automatic update by autodist
|
- automatic update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user