summaryrefslogtreecommitdiffstats
path: root/mod_auth_token.spec
blob: f365e15714fe845f9d7285647f415669ba5ff69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Name:           mod_auth_token
Version:        1.0.5
Release:        2%{?dist}
Summary:        Token based URI access module for Apache

Group:          System Environment/Daemons
License:        ASL 2.0
URL:            http://code.google.com/p/mod-auth-token/
Source0:        http://mod-auth-token.googlecode.com/files/%{name}-%{version}.tar.gz

BuildRequires:  httpd-devel automake libtool

%description
mod_auth_token allow you to generate URIS for a determined time window,
you can also limit them by IP. This is very useful to handle file
downloads, generated URIS can't be hot-linked (after it expires), also
it allows you to protect very large files that can't be piped trough a
script languages due to memory limitation.

%prep
%setup -q
rm -f configure
autoreconf -fi
automake
./configure

%build
make %{?_smp_mflags}

%install
mkdir -p $RPM_BUILD_ROOT%{_libdir}/httpd/modules
apxs  -c mod_auth_token.c
install -m 755 .libs/%{name}.so $RPM_BUILD_ROOT%{_libdir}/httpd/modules
# Drop empty NEWS-file.
rm -f $RPM_BUILD_ROOT/usr/share/doc/mod_auth_token-1.0.5/NEWS

%files
%{_libdir}/httpd/modules/*.so
%doc README LICENSE COPYING AUTHORS ChangeLog

%changelog
* Sat Jun 02 2012 Remi Collet <RPMS@FamilleCollet.com> - 1.0.5-2
- rebuild for http 2.4, for remi repo

* Tue May 29 2012 Jan-Frode Myklebust <janfrode@tanso.net> - 1.0.5-2
Apply package review patch from Lukáš Zapletal.

* Thu May 24 2012 Jan-Frode Myklebust <janfrode@tanso.net> - 1.0.5-1
Don't use full path for apxs, since it's moved around in later fedoras.

* Thu May 24 2012 Jan-Frode Myklebust <janfrode@tanso.net> - 1.0.5
Initial build.