]> git.pld-linux.org Git - packages/dokuwiki-plugin-recaptcha.git/blob - dokuwiki-plugin-recaptcha.spec
- use php-recaptcha
[packages/dokuwiki-plugin-recaptcha.git] / dokuwiki-plugin-recaptcha.spec
1 %define         plugin          recaptcha
2 Summary:        DokuWiki reCAPTCHA Plugin
3 Summary(pl.UTF-8):      Wtyczka recaptcha dla DokuWiki
4 Name:           dokuwiki-plugin-%{plugin}
5 Version:        0.2
6 Release:        1
7 License:        GPL v2
8 Group:          Applications/WWW
9 Source0:        https://fosswiki.liip.ch/download/attachments/8224780/recaptcha_v0.2.tgz
10 # Source0-md5:  9fc3ae744ed2a0a81872b7d36798dfb1
11 URL:            http://www.dokuwiki.org/plugin:recaptcha
12 Requires:       dokuwiki >= 20061106
13 Requires:       php-recaptcha
14 BuildArch:      noarch
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %define         dokuconf        /etc/webapps/dokuwiki
18 %define         dokudir         /usr/share/dokuwiki
19 %define         plugindir       %{dokudir}/lib/plugins/%{plugin}
20
21 %description
22 Lists all pages that link back to a given page using the first
23 headline as link title.
24
25 %prep
26 %setup -q -n %{plugin}
27
28 %install
29 rm -rf $RPM_BUILD_ROOT
30 install -d $RPM_BUILD_ROOT%{plugindir}
31 cp -a . $RPM_BUILD_ROOT%{plugindir}
32 rm -f $RPM_BUILD_ROOT%{plugindir}/info.txt
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %doc info.txt
40 %dir %{plugindir}
41 %{plugindir}/*.php
42 %dir %{plugindir}/conf
43 %{plugindir}/conf/*.php
44 %dir %{plugindir}/lang
45 %dir %{plugindir}/lang/en
46 %{plugindir}/lang/en/*.php
47 %dir %{plugindir}/lang/de
48 %{plugindir}/lang/de/*.php
This page took 0.063544 seconds and 3 git commands to generate.