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