]> git.pld-linux.org Git - packages/phpdc.git/blob - phpdc.spec
- typo fixed
[packages/phpdc.git] / phpdc.spec
1 Summary:        A Web frontend for the Direct Connect Text Client
2 Summary(pl):    Interfejs WWW do Direct Connect Text Client
3 Name:           phpdc
4 Version:        1.0
5 %define _rc     rc1
6 Release:        0.%{_rc}.1
7 License:        GPL v2
8 Group:          Applications/Databases/Interfaces
9 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}%{_rc}.tar.gz
10 URL:            http://phpdc.sourceforge.net/
11 Requires:       dctc
12 Requires:       php >= 4.3.0
13 Requires:       php-gd >= 4.3.0
14 Requires:       php-sockets >= 4.3.0
15 Requires:       webserver
16 BuildArch:      noarch
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %define         _phpdir /home/services/httpd/html/phpdc
20
21 %description
22 PHPDC Web is a server-side Web frontend for the Direct Connect Text
23 Client (dctc).
24
25 %prep
26 %setup -q -n %{name}
27
28 %install
29 rm -rf $RPM_BUILD_ROOT
30 install -d $RPM_BUILD_ROOT%{_phpdir}/{layout,private,styles}
31
32 install *.php $RPM_BUILD_ROOT%{_phpdir}
33 install *.{html,png,ini} $RPM_BUILD_ROOT%{_phpdir}
34 install layout/* $RPM_BUILD_ROOT%{_phpdir}/layout
35 install private/* $RPM_BUILD_ROOT%{_phpdir}/private
36 install styles/* $RPM_BUILD_ROOT%{_phpdir}/styles
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files
42 %defattr(644,root,root,755)
43 %dir %{_phpdir}
44 %dir %{_phpdir}/layout
45 %dir %{_phpdir}/private
46 %dir %{_phpdir}/styles
47 %{_phpdir}/*.html
48 %{_phpdir}/*.php
49 %{_phpdir}/*.png
50 %{_phpdir}/layout/*
51 %{_phpdir}/private/*.php
52 %{_phpdir}/styles/*
53 %config(noreplace) %verify(not md5 size mtime) %{_phpdir}/private/phpdc.ini
This page took 0.055993 seconds and 4 git commands to generate.