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