]> git.pld-linux.org Git - packages/Zope-ExtFile.git/blob - Zope-ExtFile.spec
- initial release
[packages/Zope-ExtFile.git] / Zope-ExtFile.spec
1 %include        /usr/lib/rpm/macros.python
2 %define         zope_subname    ExtFile
3 Summary:        Product stores large files in an external file-repository
4 Summary(pl):    Produkt umo¿liwiaj±cy obs³uge du¿ych plików w zewnêtrznych repozytoriach
5 Name:           Zope-%{zope_subname}
6 Version:        1.1.3
7 Release:        1
8 License:        Distributable
9 Group:          Development/Tools
10 Source0:        http://zope.org/Members/MacGregor/%{zope_subname}/%{version}/%{zope_subname}-%{version}.tgz
11 # Source0-md5:  c5963b22b83a9ee0bb3fe46e525f38c0
12 URL:            http://zope.org/Members/MacGregor/ExtFile/
13 %pyrequires_eq  python-modules
14 Requires:       ImageMagick
15 Requires:       Zope
16 Requires(post,postun):  /usr/sbin/installzopeproduct
17 BuildArch:      noarch
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 The ExtFile Product stores large files in an external file-repository
22 and is able to display icons for different MIME-Types.
23
24 %description -l pl
25 Produkt ExtFile umo¿liwia obs³ugê du¿ych plików w zewnêtrznych
26 repozytoriach i wy¶wietlanie ich ikonek dla ró¿nych typów MIME.
27
28 %prep
29 %setup -q -n %{zope_subname}
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
34
35 cp -af {icons,www,*.py,*.dtml,version.txt} $RPM_BUILD_ROOT%{_datadir}/%{name}
36
37 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
38 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
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 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
47 if [ -f /var/lock/subsys/zope ]; then
48         /etc/rc.d/init.d/zope restart >&2
49 fi
50
51 %postun
52 if [ "$1" = "0" ]; then
53         /usr/sbin/installzopeproduct -d %{zope_subname}
54         if [ -f /var/lock/subsys/zope ]; then
55                 /etc/rc.d/init.d/zope restart >&2
56         fi
57 fi
58
59 %files
60 %defattr(644,root,root,755)
61 %doc CHANGES.txt LICENSE.txt README.txt
62 %{_datadir}/%{name}
This page took 0.06404 seconds and 4 git commands to generate.