source: projects/specs/trunk/f/fastjar/fastjar-vl.spec @ 1563

Revision 1563, 1.2 KB checked in by inagaki, 14 years ago (diff)

updated: gcc, jpackage-utils
NEW: ecj, fastjar, java-1.5.0-gcj

Line 
1Summary:        Jar creation utility
2Summary(ja):    Jar 作成ツール
3Name:           fastjar
4Version:        0.98
5Release:        2%{?_dist_release}
6
7License:        GPL
8Group:          Applications/Archiving
9Source0:        %{name}-%{version}.tar.gz
10
11URL:            http://savannah.nongnu.org/projects/fastjar
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14BuildRequires:  zlib-devel
15BuildRequires:  texinfo
16Requires(post): /sbin/install-info
17Requires(preun):/sbin/install-info
18
19%description
20Replacement for Suns .jar creation program. It is written in C
21instead of java and is tons faster.
22
23%prep
24%setup -q
25
26%build
27%configure
28make %{?_smp_mflags}
29
30%install
31rm -rf $RPM_BUILD_ROOT
32%makeinstall
33
34rm -f $RPM_BUILD_ROOT%{_infodir}/dir
35
36%clean
37rm -rf $RPM_BUILD_ROOT
38
39%post
40/sbin/install-info --info-dir=%{_infodir} %{_infodir}/fastjar.info.gz
41
42%preun
43if [ "$1" = 0 ]; then
44    /sbin/install-info --delete \
45        --info-dir=%{_infodir} %{_infodir}/fastjar.info.gz
46fi
47
48%files
49%defattr(-, root, root)
50%doc AUTHORS CHANGES COPYING ChangeLog NEWS README
51%{_bindir}/*
52%{_infodir}/fastjar*
53%{_mandir}/man1/*
54
55%changelog
56* Fri Jul 30 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.98-2
57- added BR: zlib-devel
58
59* Wed Nov 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.98-1
60- initial build for Vine Linux
61
Note: See TracBrowser for help on using the repository browser.