Enable rdoc generation only if rdoc is locally available
[platform/upstream/libzypp-bindings.git] / libzypp-bindings.spec.cmake
1 #
2 # spec file for package libzypp-bindings
3 #
4 # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
5 # This file and all modifications and additions to the pristine
6 # package are under the same license as the package itself.
7 #
8 # Please submit bugfixes or comments via http://bugs.opensuse.org/
9 #
10
11 # nodebuginfo
12
13 Name:           @PACKAGE@
14 Version:        @VERSION@
15 Release:        0
16 License:        GPL v2 or later
17 Summary:        Bindings for libzypp
18 Group:          Development/Sources
19 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
20 BuildRequires:  cmake gcc-c++ python-devel ruby-devel
21 BuildRequires:  swig >= 1.3.40
22 BuildRequires:  libzypp-devel >= 5.8.0
23 Source:         %{name}-%{version}.tar.bz2
24
25 %description
26 This package provides bindings for libzypp, the library for package management.
27
28 %prep
29 %setup -q
30
31 %build
32 mkdir build
33 cd build
34 cmake -DCMAKE_INSTALL_PREFIX=%{prefix} \
35       -DPYTHON_SITEDIR=%{py_sitedir} \
36       -DLIB=%{_lib} \
37       -DCMAKE_VERBOSE_MAKEFILE=TRUE \
38       -DCMAKE_C_FLAGS_RELEASE:STRING="%{optflags}" \
39       -DCMAKE_CXX_FLAGS_RELEASE:STRING="%{optflags}" \
40       -DCMAKE_BUILD_TYPE=Release \
41       -DCMAKE_SKIP_RPATH=1 \
42       ..
43 make %{?jobs:-j %jobs}
44
45 %test
46 cd build
47 make test
48
49 %install
50 cd build
51 make install DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 %{__rm} -rf %{buildroot}
55
56 %package -n ruby-zypp
57 Summary:        Ruby bindings for libzypp
58 Group:          Development/Languages/Ruby
59
60 %description -n ruby-zypp
61 -
62
63 %files -n ruby-zypp
64 %defattr(-,root,root,-)
65 %if 0%{?suse_version}
66 %{_libdir}/ruby/vendor_ruby/%{rb_ver}/%{rb_arch}/zypp.so
67 %endif
68 %if 0%{?mandriva_version}
69 %{ruby_sitearchdir}/zypp.so
70 %endif
71
72 %package -n python-zypp
73 Summary:        Python bindings for libzypp
74 Group:          Development/Languages/Python
75 %description -n python-zypp
76 -
77
78 %files -n python-zypp
79 %defattr(-,root,root,-)
80 %{py_sitedir}/_zypp.so
81 %{py_sitedir}/zypp.py
82
83 %package -n perl-zypp
84 Requires:       perl = %{perl_version}
85 Summary:        Perl bindings for libzypp
86 Group:          Development/Languages/Perl
87
88 %description -n perl-zypp
89 -
90
91 %files -n perl-zypp
92 %defattr(-,root,root,-)
93 %{perl_vendorlib}/zypp.pm
94 %{perl_vendorarch}/zypp.so
95
96 %changelog