/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera
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
54
55
56
57
Summary: UFO Camera plugin for pcitool
Name: ${PACKAGE_NAME}
Version: ${CPACK_PACKAGE_VERSION}
Release: csa
License: GPL-3.0
Group: Development/Libraries
Source: ${CPACK_SOURCE_PACKAGE_FILE_NAME}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-root
URL: http://darksoft.org
Prefix: %{_prefix}
Docdir: %{_docdir}
Requires: pcilib >= 0.2.7 libufodecode >= 0.3.0 ipecamera-scripts
BuildRequires: uthash
BuildRequires: libpcilib-devel libufodecode-devel
BuildRequires: pkg-config libtool cmake
Vendor: Institute for Data Processing and Electronics, KIT
Packager: Suren A. Chilingaryan <csa@suren.me>

%description
This package provides an UFO Camera event engine for the pcilib platform.

%package devel
Summary: UFO Camera plugin for pcitool
Group: Development/Libraries 
Requires: ${PACKAGE_NAME} = %{version}
Requires: libpcilib-devel

%description devel
Development files provide access to some non-standard features of the event engine.

%prep
%setup -q

%build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=%{_libdir} -DCMAKE_INSTALL_BINDIR=%{_bindir} -DCMAKE_INSTALL_DATADIR=%{_datadir} -DCMAKE_INSTALL_DATAROOTDIR=%{_datadir} -DCMAKE_INSTALL_INCLUDEDIR=%{_includedir} .

make

%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT

%clean
rm -rf $RPM_BUILD_ROOT

%files 
%defattr(-, root, root)
${PCILIB_PLUGIN_DIR}/lib${PACKAGE_NAME}.so

%files -n ${PACKAGE_NAME}-devel
%defattr(-, root, root)  
%{_includedir}/*
%{_libdir}/pkgconfig/*.pc

%changelog
* Fri Mar  4 2016 Suren A. Chilingaryan <csa@suren.me> - ${CPACK_PACKAGE_VERSION}
- Added spec file to the sources