]> git.pld-linux.org Git - packages/devsec.git/blob - devsec.spec
81110a0efaeab24fd47e86e29f55f1102c8c442b
[packages/devsec.git] / devsec.spec
1 # TODO:
2 # - use system libs: ffmpeg
3 # - many missing BR
4 # - do cleanups in files
5 # - requires webserver?
6 # - make subpackages: devel, cgi/webserver
7 #
8 # Conditional build:
9 Summary:        Devolution Security - video surveillance system for the Linux/X11 platform
10 Name:           devsec
11 Version:        3.0.6
12 Release:        0.1
13 License:        GPL v2
14 Group:          Applications/Multimedia
15 Source0:        http://dl.sourceforge.net/devsec/%{name}-%{version}.tar.gz
16 # Source0-md5:  539db08716f0237c8a8c06c25b368b4b
17 Patch0:         %{name}-no_extern.patch
18 URL:            http://devsec.sourceforge.net/
19 BuildRequires:  SDL-devel >= 1.2.7
20 BuildRequires:  faac-devel >= 1.18
21 BuildRequires:  imlib-devel >= 1.9.14
22 BuildRequires:  lame-libs-devel >= 3.95
23 BuildRequires:  libcgi-devel
24 BuildRequires:  libogg-devel
25 BuildRequires:  libpng-devel
26 BuildRequires:  libtemplate-devel
27 BuildRequires:  libvorbis-devel
28 # Required for manuals from ffmpeg (to be removed):
29 BuildRequires:  perl-tools-pod
30 # Should be required:
31 #BuildRequires: ffmpeg-devel
32 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34 %description
35 Devolution Security is a video surveillance system for the Linux/X11 platform.
36 Features:
37  - Up to 16 cameras
38  - Motion detection
39  - Record on motion detection
40  - Record up to 25 fps mpeg4 video
41  - Multicast live streams to local network
42  - Unicast to internet IP address
43  - Very configurable
44  - Themeable X11 interface
45  - Configurable helper buttons
46  - Web based interface
47
48 %prep
49 %setup -q
50 %patch0 -p1
51
52 %build
53 %configure
54 %{__make} \
55         CC="%{__cc}"
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59
60 %{__make} install \
61         DESTDIR=$RPM_BUILD_ROOT
62
63 %clean
64 rm -rf $RPM_BUILD_ROOT
65
66 %post   -p /sbin/ldconfig
67 %postun -p /sbin/ldconfig
68
69 %files
70 %defattr(644,root,root,755)
71 #%doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
72 #%%dir %{_sysconfdir}
73 #%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
74 %attr(755,root,root) %{_bindir}/*
75 #%{_datadir}/%{name}
76 #%attr(754,root,root) /etc/rc.d/init.d/%{name}
77 #%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
78 #%{_examplesdir}/%{name}-%{version}
79 %dir %{_pixmapsdir}/%{name}
80 %{_pixmapsdir}/%{name}/*.png
81
82 %{_includedir}/*.h
This page took 0.069585 seconds and 2 git commands to generate.