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