]> git.pld-linux.org Git - packages/ftpcube.git/blob - ftpcube.spec
- up to 0.5.1
[packages/ftpcube.git] / ftpcube.spec
1 Summary:        Multithreaded FTP client for X Window System
2 Summary(pl.UTF-8):      Wielowątkowy klient FTP dla systemu X Window
3 Name:           ftpcube
4 Version:        0.5.1
5 Release:        1
6 License:        Artistic for code, GPL v2 for icons
7 Group:          X11/Applications/Networking
8 Source0:        http://dl.sourceforge.net/ftpcube/%{name}-%{version}.tar.gz
9 # Source0-md5:  3eb93ae44fa552ec50a24b7882198dd1
10 Source1:        %{name}.desktop
11 URL:            http://ftpcube.sourceforge.net/
12 BuildRequires:  python
13 %pyrequires_eq  python-libs
14 BuildRequires:  python-wxPython
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 FtpCube is a multi-platform, graphical FTP client written in Python,
19 using the wxPython graphical tookit. FtpCube's interface is based on
20 LeechFTP by Jan Debis but its codebase has been developed from scratch
21 and includes functionality that surpasses the original LeechFTP.
22
23 FtpCube aims to provide a high quality user interface, as well as a
24 rich feature set. The FtpCube project was born out of my search to
25 find a good, capable Unix FTP client that offered an intuitive and
26 sexy UI. Plus, I liked the idea of having an FTP client written in
27 Python. So, voila FtpCube.
28
29 %description -l pl.UTF-8
30 FtpCube to wieloplatformowy, graficzny klient FTP napisany w Pythonie,
31 używający biblioteki graficznej wxPython. Interfejs FtpCube jest
32 oparty na LeechFTP Jana Debisa, ale kod został stworzony od początku i
33 zawiera funkcjonalność przewyższającą oryginał.
34
35 FtpCube ma zapewnić wysokiej jakości interfejs użytkownika, a także
36 bogaty zbiór możliwości. Projekt FtpCube narodził się z poszukiwań
37 dobrego, uniksowego klienta FTP o dużych możliwościach, oferującego
38 intuicyjny i seksowny interfejs. Autorowi spodobała się idea klienta
39 FTP napisanego w Pythonie. Tak więc, voila FtpCube.
40
41 %prep
42 %setup -q
43
44 %build
45 python setup.py build
46 # Extracting program icon from .py
47 python libftpcube/icons/%{name}.py > %{name}.xpm
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51
52 python setup.py install \
53         --optimize=2 \
54         --prefix=%{_prefix} \
55         --install-scripts=%{_bindir} \
56         --root=$RPM_BUILD_ROOT
57
58 install -D %{name}.xpm $RPM_BUILD_ROOT%{_pixmapsdir}/%{name}.xpm
59 install -D %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}/%{name}.desktop
60
61 %clean
62 rm -rf $RPM_BUILD_ROOT
63
64 %files
65 %defattr(644,root,root,755)
66 %doc README CHANGELOG COPYING COPYING.ICONS
67 %attr(755,root,root) %{_bindir}/*
68 %{py_sitescriptdir}/libftpcube
69 %{_desktopdir}/*.desktop
70 %{_pixmapsdir}/*
This page took 0.039889 seconds and 4 git commands to generate.