
git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@12412 30a43799-04e7-0310-8b2b-ea0d24f86d0e
62 lines
1.3 KiB
RPMSpec
62 lines
1.3 KiB
RPMSpec
|
|
|
|
|
|
|
|
Summary: C++ Interface for DBus
|
|
Name: libdbus-c++
|
|
Version: @PACKAGE_VERSION@
|
|
Release: 70001
|
|
URL: http://dev.openwengo.org/trac/openwengo/trac.fcgi/browser/wengophone-ng/branches/wengophone-dbus-api/libs/dbus/src
|
|
Source0: %{name}-%{version}.tar.gz
|
|
License: LGPL
|
|
Group: Libraries
|
|
BuildRoot: %{_tmppath}/%{name}-root
|
|
Prefix: /usr
|
|
|
|
%description
|
|
|
|
Ability to reflect dbus methods and signals into a more natural C++ object system.
|
|
|
|
%package devel
|
|
Requires: libdbus-c++ = %{version}
|
|
Group: Development/Libraries
|
|
Summary: Header files for libdbus-c++
|
|
|
|
%description devel
|
|
Header files for libdbus-c++
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
./configure --prefix=/usr
|
|
make -j 4
|
|
|
|
%install
|
|
make prefix=$RPM_BUILD_ROOT%{prefix} install
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(755,root,root)
|
|
%{prefix}/lib/libdbus-c++*.so*
|
|
|
|
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{prefix}/bin/dbusxx-xml2cpp
|
|
%{prefix}/bin/dbusxx-introspect
|
|
%{prefix}/lib/libdbus-c*.a
|
|
%{prefix}/include/dbus-c++-1
|
|
%{prefix}/lib/pkgconfig/*.pc
|
|
|
|
%changelog
|
|
* Thu Feb 8 2007 Ben Martin
|
|
- initial spec file
|