]> git.pld-linux.org Git - packages/fastjar.git/blob - fastjar.spec
This commit was manufactured by cvs2git to create tag 'fastjar-0_93-1'.
[packages/fastjar.git] / fastjar.spec
1 Summary:        Jar file creation utility
2 Summary(pl):    Narzêdzie do tworzenia plików jar
3 Name:           fastjar
4 Version:        0.93
5 Release:        1
6 License:        GPL
7 Group:          Development/Languages
8 Group(de):      Entwicklung/Sprachen
9 Group(pl):      Programowanie/Jêzyki
10 Source0:        ftp://download.sourceforge.net/pub/sourceforge/fastjar/%{name}-%{version}.tgz
11 URL:            http://fastjar.sourceforge.net
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  zlib-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 FastJar is an attempt at creating a feature-for-feature copy of Sun's
19 JDK's 'jar' command. Sun's jar (or Blackdown's for that matter) is
20 written entirely in Java which makes it dog slow. Since FastJar is
21 written in C, it can create the same .jar file as Sun's tool in a
22 fraction of the time. On my system, Sun's jar takes 50 seconds to
23 create a 10MB jar file, while FastJar only takes a little over a
24 second.
25
26 %prep
27 %setup -q
28
29 %build
30 aclocal
31 autoconf
32 automake -a -c
33 %configure
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38
39 %{__make} install DESTDIR=$RPM_BUILD_ROOT
40
41 ln -sf fastjar $RPM_BUILD_ROOT%{_bindir}/jar
42
43 gzip -9nf README CHANGES
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc *.gz
51 %attr(755,root,root) %{_bindir}/*
This page took 0.02564 seconds and 3 git commands to generate.