]> git.pld-linux.org Git - packages/lftp.git/blob - lftp.spec
- added Group(pl).
[packages/lftp.git] / lftp.spec
1 Summary:     Commandline ftp client.
2 Summary(pl): Zaawansowany klient ftp
3 Name:        lftp
4 Version:     1.1.1
5 Release:     2
6 Copyright:   GPL
7 Group:       Applications/Networking
8 Group(pl):   Aplikacje/Sieæ
9 Source:      ftp://ftp.yars.free.net:/pub/software/unix/net/ftp/client/%{name}-%{version}.tar.gz
10 Icon:        ftp.gif
11 BuildRoot:   /tmp/%{name}-%{version}-root
12
13 %description
14 LFTP is a shell-like command line ftp client. The main two advantages
15 over other ftp clients are reliability and ability to perform tasks
16 in background. It will reconnect and reget the file being transferred
17 if the connection broke. You can start a transfer in background and
18 continue browsing on the ftp site.  It does this all in one process.
19 When you have started background jobs and feel you are done, you can
20 just exit lftp and it automatically moves to nohup mode and completes
21 the transfers. It has also such nice features as reput and mirror.
22
23 %description -l pl
24 Lftp jest zaawansowanym klientem ftp. Potrafi automatycznie po³±czyæ siê z 
25 serwerem ftp po zerwanym po³±czeniu i dokoñczyæ ¶ci±ganie archiwów. Lftp mo¿e 
26 pracowaæ w tle i nie zrywa przy tym po³±czenia po tym jak siê wylogujesz. 
27 Program ten honoruje komendy shellowe podczas sesji, np. `ls -al | less` itp. 
28 Doskonale siê spisuje jako aplikacja do mirrorowania serwerów FTP.
29
30 %prep
31 rm -rf $RPM_BUILD_ROOT
32
33 %setup -q
34
35 %build
36 CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
37 make
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 install -d $RPM_BUILD_ROOT/etc
42 make prefix=$RPM_BUILD_ROOT/usr install
43 install lftp.conf $RPM_BUILD_ROOT/etc
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644, root, root, 755)
50 %doc README NEWS 
51 %config(noreplace) %verify(not size mtime md5) /etc/lftp.conf
52 %attr(755, root, root) /usr/bin/*
53 %attr(644, root, man) /usr/man/man1/*
54 %lang(es) /usr/share/locale/es/LC_MESSAGES/lftp.mo
55 %lang(ru) /usr/share/locale/ru/LC_MESSAGES/lftp.mo
56 %lang(it) /usr/share/locale/it/LC_MESSAGES/lftp.mo
57 %lang(pt) /usr/share/locale/pt*/LC_MESSAGES/lftp.mo
58
59 %changelog
60 * Mon Nov  2 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
61   [1.0.1-2]
62 - fixed passing $RPM_OPT_FLAGS.
63 - removed "rm -rf $RPM_BUILD_ROOT" from %prep,
64 - simplification in %files,
65   [1.0.1-1]
66 - added %lang macros for /usr/share/locale/*/LC_MESSAGES/lftp.mo files,
67 - added pl translation.- build against glibc-2.1,
68 - translation modified for pl,
69 - moved %changelog at the end of spec.
This page took 0.04373 seconds and 4 git commands to generate.