]> git.pld-linux.org Git - packages/ftpcube.git/blame - ftpcube.spec
- new
[packages/ftpcube.git] / ftpcube.spec
CommitLineData
7c296831 1Summary: Multithreaded FTP client for X Window
2Name: ftpcube
3Version: 0.4.3
4Release: 1
5License: Artistic for code, GPL v2 for icons
6Group: X11/Applications/Networking
7Source0: http://dl.sourceforge.net/ftpcube/ftpcube-0.4.3.tar.gz
8# Source0-md5: 574d207377a24caf6315866d52326672
9URL: http://ftpcube.sourceforge.net/
10BuildRequires: python
11Requires: python-wxPython
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15FtpCube is a multi-platform, graphical FTP client written in Python,
16using the wxPython graphical tookit. FtpCube's interface is based on
17LeechFTP by Jan Debis but its codebase has been developed from scratch
18and includes functionality that surpasses the original LeechFTP.
19
20FtpCube aims to provide a high quality user interface, as well as a rich
21feature set. The FtpCube project was born out of my search to find a
22good, capable unix FTP client that offered an intuitive and sexy UI.
23Plus, I liked the idea of having an FTP client written in Python. So,
24voila FtpCube.
25
26%prep
27%setup -q -n %{name}-%{version}
28
29%build
30python setup.py build
31
32%install
33rm -rf $RPM_BUILD_ROOT
34
35python setup.py install \
36 --optimize=2 \
37 --prefix=%{_prefix} \
38 --install-scripts=%{_bindir} \
39 --root=$RPM_BUILD_ROOT
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44%files
45%defattr(644,root,root,755)
46%doc README TODO CHANGELOG
47%attr(755,root,root) %{_bindir}/*
48%{py_sitedir}/libftpcube/
This page took 0.052102 seconds and 4 git commands to generate.