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