[PATCH 12/16] e_dbus/bluez: add handler to DeviceFound signal
[framework/uifw/edbus.git] / e_dbus.spec.in
1 %define _missing_doc_files_terminate_build 0
2
3 Summary: EFL Wrapper for DBus
4 Name: @PACKAGE@
5 Version: @VERSION@
6 Release: 0.%(date '+%Y%m%d')
7 License: BSD
8 Group: System Environment/Libraries
9 URL: http://www.enlightenment.org/
10 Source: %{name}-%{version}.tar.gz
11 Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <mej@eterm.org>}
12 Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)}
13 Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
14 Obsoletes: ecore-dbus <= 0.9.9.040
15 BuildRoot: %{_tmppath}/%{name}-%{version}-root
16
17 %description
18 e_dbus provides a convenience wrapper for EFL applications using DBus.
19
20 %package devel
21 Summary: e_dbus headers, static libraries, documentation and test programs
22 Group: System Environment/Libraries
23 Requires: %{name} = %{version}
24
25 %description devel
26 Headers, static libraries, test programs and documentation for e_dbus
27
28 %prep
29 %setup -q
30
31 %build
32 %{configure} --prefix=%{_prefix}
33 %{__make} %{?_smp_mflags} %{?mflags}
34
35 %install
36 %{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
37
38 # Get rid of unneeded testing cruft.
39 %{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/%{name}
40
41 %clean
42 test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
43
44 %post
45 /sbin/ldconfig
46
47 %postun
48 /sbin/ldconfig
49
50 %files
51 %defattr(-, root, root)
52 %doc AUTHORS COPYING* README
53 %{_bindir}/*
54 %{_libdir}/*.so.*
55
56 %files devel
57 %defattr(-, root, root)
58 %{_includedir}/*.h
59 %{_libdir}/*.so
60 %{_libdir}/*.la
61 %{_libdir}/*.a
62 %{_libdir}/pkgconfig/*
63
64 %changelog