]> git.pld-linux.org Git - packages/lftp.git/blob - lftp.spec
- release 4,
[packages/lftp.git] / lftp.spec
1 #
2 # Conditional build:
3 # bcond_off_ssl - do not use SSL
4 #
5 Summary:        Commandline ftp client
6 Summary(pl):    Zaawansowany klient ftp
7 Name:           lftp
8 Version:        2.3.9
9 Release:        4
10 License:        GPL
11 Group:          Applications/Networking
12 Group(de):      Applikationen/Netzwerkwesen
13 Group(pl):      Aplikacje/Sieciowe
14 Source0:        ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/%{name}-%{version}.tar.bz2
15 Patch0:         %{name}-am14_fix.patch
16 Patch1:         %{name}-use_system_gettext.m4.patch
17 Patch2:         %{name}-readline.patch
18 Icon:           ftp.gif
19 URL:            http://ftp.yars.free.net/projects/lftp/
20 BuildRequires:  ncurses-devel >= 5.2
21 BuildRequires:  readline-devel >= 4.2
22 BuildRequires:  gettext-devel
23 BuildRequires:  gcc-c++
24 %{!??bcond_off_ssl:BuildRequires:       openssl-devel >= 0.9.6a}
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 LFTP is a shell-like command line ftp client. The main two advantages
29 over other ftp clients are reliability and ability to perform tasks in
30 background. It will reconnect and reget the file being transferred if
31 the connection broke. You can start a transfer in background and
32 continue browsing on the ftp site. It does this all in one process.
33 When you have started background jobs and feel you are done, you can
34 just exit lftp and it automatically moves to nohup mode and completes
35 the transfers. It has also such nice features as reput and mirror.
36
37 %description -l pl
38 Lftp jest zaawansowanym klientem ftp. Potrafi automatycznie po³±czyæ
39 siê z serwerem ftp po zerwanym po³±czeniu i dokoñczyæ ¶ci±ganie
40 archiwów. Lftp mo¿e pracowaæ w tle i nie zrywa przy tym po³±czenia po
41 tym jak siê wylogujesz. Program ten honoruje komendy pow³oki podczas
42 sesji, np. `ls -al | less` itp. Doskonale siê spisuje jako aplikacja
43 do mirrorowania serwerów FTP.
44
45 %prep
46 %setup -q
47 %patch0 -p1
48 %patch1 -p1
49 %patch2 -p1
50
51 %build
52 libtoolize --copy --force
53 gettextize --copy --force
54 aclocal -I m4
55 autoconf
56 automake -a -c
57 CXXFLAGS="%{rpmcflags} -fno-rtti -fno-exceptions -fno-implicit-templates"
58 %configure \
59         --with-modules
60         --with%{?bcond_off_ssl:out}-ssl
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65 install -d $RPM_BUILD_ROOT%{_sysconfdir}
66
67 %{__make} install DESTDIR=$RPM_BUILD_ROOT
68
69 install lftp.conf $RPM_BUILD_ROOT%{_sysconfdir}
70
71 gzip -9nf README NEWS
72
73 %find_lang %{name}
74
75 %clean
76 rm -rf $RPM_BUILD_ROOT
77
78 %files -f %{name}.lang
79 %defattr(644,root,root,755)
80 %doc *.gz
81 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lftp.conf
82 %attr(755,root,root) %{_bindir}/*
83 %{_mandir}/man1/*
84 %attr(755,root,root) %{_datadir}/lftp
85
86 %dir %{_libdir}/lftp
87 %dir %{_libdir}/lftp/%{version}
88 %attr(755,root,root) %{_libdir}/lftp/%{version}/*.so
This page took 0.042616 seconds and 4 git commands to generate.