]> git.pld-linux.org Git - packages/Zope-WebMail.git/blob - Zope-WebMail.spec
- fixed License, cleanups/simplifications
[packages/Zope-WebMail.git] / Zope-WebMail.spec
1 %include        /usr/lib/rpm/macros.python
2 %define         zope_subname    WebMail
3 Summary:        WebMail - a mail client for Zope
4 Summary(pl):    WebMail - klient poczty elektronicznej dla Zope
5 Name:           Zope-%{zope_subname}
6 Version:        4.1
7 Release:        1
8 License:        GPL v2+
9 Group:          Development/Tools
10 Source0:        http://zope.org/Members/sgiraud/%{zope_subname}/%{zope_subname}/%{zope_subname}_%{version}.tar.gz
11 # Source0-md5:  3cc5047f150c66be431a6d1babc403c6
12 URL:            http://zope.org/Members/sgiraud/WebMail
13 %pyrequires_eq  python-modules
14 Requires:       Zope
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %define         product_dir     /usr/lib/zope/Products
19
20 %description
21 WebMail is a mail client for Zope.
22
23 %description -l pl
24 WebMail jest klientem poczty elektronicznej dla Zope.
25
26 %prep
27 %setup -q -n %{zope_subname}
28
29 find . -type d -name CVS | xargs rm -rf
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 install -d $RPM_BUILD_ROOT%{product_dir}/%{zope_subname}
34
35 cp -af {dtml,style_sheet,www,*.py} $RPM_BUILD_ROOT%{product_dir}/%{zope_subname}
36
37 %py_comp $RPM_BUILD_ROOT%{product_dir}/%{zope_subname}
38 %py_ocomp $RPM_BUILD_ROOT%{product_dir}/%{zope_subname}
39
40 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %post
46 if [ -f /var/lock/subsys/zope ]; then
47         /etc/rc.d/init.d/zope restart >&2
48 fi
49
50 %postun
51 if [ -f /var/lock/subsys/zope ]; then
52         /etc/rc.d/init.d/zope restart >&2
53 fi
54
55 %files
56 %defattr(644,root,root,755)
57 # contains authors
58 %doc LICENSE.txt
59 %{product_dir}/%{zope_subname}
This page took 0.051427 seconds and 4 git commands to generate.