]> git.pld-linux.org Git - packages/Zope-LocalFS.git/blob - Zope-LocalFS.spec
- spaces -> tabs
[packages/Zope-LocalFS.git] / Zope-LocalFS.spec
1
2 %define         zope_subname    LocalFS
3 Summary:        This product allows you to store Zope objects as human-readable files
4 Summary(pl):    Dodatek umo¿liwiaj±cy praktyczniejsze przetrzymywanie obiektów Zope
5 Name:           Zope-%{zope_subname}
6 Version:        1.3
7 Release:        2
8 License:        Distributable
9 Group:          Development/Tools
10 Source0:        http://www.easyleading.org/Downloads/%{zope_subname}-%{version}-andreas.tar.gz
11 # Source0-md5:  0fe97ac8a24e1e706df8d5d4d9543858
12 URL:            http://www.easyleading.org/Members/Eddy/LocalFS_1_3/
13 BuildRequires:  python
14 %pyrequires_eq  python-modules
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 This product allows you to store Zope objects as human-readable files
22 in the local file system.
23
24 %description -l pl
25 Dodatek dla Zope umo¿liwiaj±cy przetrzymywanie obiektów Zope w
26 lokalnym systemie plików.
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 {Extensions,dtml,help,www,*.py,version.txt,refresh.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 LICENSE README TODO
62 %{_datadir}/%{name}
This page took 0.042124 seconds and 4 git commands to generate.