]> git.pld-linux.org Git - packages/lftp.git/blob - lftp.spec
Modified Files:
[packages/lftp.git] / lftp.spec
1 Summary:     Commandline ftp client.
2 Summary(pl): Zaawansowany klient ftp
3 Name:        lftp
4 Version:     1.2.3
5 Release:     1
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/buildroot-%{name}-%{version}
12
13 %description
14 LFTP is a shell-like command line ftp client. The main two advantages over
15 other ftp clients are reliability and ability to perform tasks in
16 background. It will reconnect and reget the file being transferred if the
17 connection broke. You can start a transfer in background and continue
18 browsing on the ftp site.  It does this all in one process. When you have
19 started background jobs and feel you are done, you can just exit lftp and it
20 automatically moves to nohup mode and completes the transfers. It has also
21 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 %setup -q
32
33 %build
34 CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
35 ./configure \
36         --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 gzip -9nf $RPM_BUILD_ROOT/usr/man/man1/*
46
47 %clean
48 rm -rf $RPM_BUILD_ROOT
49
50 %files
51 %defattr(644, root, root, 755)
52 %doc README NEWS 
53 %config(noreplace) %verify(not size mtime md5) /etc/lftp.conf
54 %attr(755, root, root) /usr/bin/*
55 %attr(755, root, root, 755) /usr/share/lftp
56 %attr(644, root,  man) /usr/man/man1/*
57 %lang(es) /usr/share/locale/es/LC_MESSAGES/lftp.mo
58 %lang(it) /usr/share/locale/it/LC_MESSAGES/lftp.mo
59 %lang(pl) /usr/share/locale/pl/LC_MESSAGES/lftp.mo
60 %lang(pt) /usr/share/locale/pt*/LC_MESSAGES/lftp.mo
61 %lang(ru) /usr/share/locale/ru/LC_MESSAGES/lftp.mo
62
63 %changelog
64 * Wed Dec  9 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
65   [1.2-1]
66 - added gzipping man pages,
67 - added using LDFLAGS="-s" to ./configure enviroment,
68 - added /usr/share/lftp to %files,
69 - recompiled against libstdc++.so.2.9.0,
70 - added /usr/share/locale/pl/LC_MESSAGES/lftp.mo to %files.
71
72 * Mon Nov  2 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
73   [1.0.1-2]
74 - fixed passing $RPM_OPT_FLAGS,
75 - added Group(pl).
76 - removed "rm -rf $RPM_BUILD_ROOT" from %prep,
77 - simplification in %files,
78   [1.0.1-1]
79 - added %lang macros for /usr/share/locale/*/LC_MESSAGES/lftp.mo files,
80 - added pl translation.- build against glibc-2.1,
81 - translation modified for pl,
82 - moved %changelog at the end of spec.
This page took 0.034718 seconds and 4 git commands to generate.