Refactor Arch - don't expose full C++ API
[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 %install
46 cd build
47 make install DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 %{__rm} -rf %{buildroot}
51
52 %package -n ruby-zypp
53 Summary:        Ruby bindings for libzypp
54 Group:          Development/Languages/Ruby
55
56 %description -n ruby-zypp
57 -
58
59 %files -n ruby-zypp
60 %defattr(-,root,root,-)
61 %if 0%{?suse_version}
62 %{_libdir}/ruby/vendor_ruby/%{rb_ver}/%{rb_arch}/zypp.so
63 %endif
64 %if 0%{?mandriva_version}
65 %{ruby_sitearchdir}/zypp.so
66 %endif
67
68 %package -n python-zypp
69 Summary:        Python bindings for libzypp
70 Group:          Development/Languages/Python
71 %description -n python-zypp
72 -
73
74 %files -n python-zypp
75 %defattr(-,root,root,-)
76 %{py_sitedir}/_zypp.so
77 %{py_sitedir}/zypp.py
78
79 %package -n perl-zypp
80 Requires:       perl = %{perl_version}
81 Summary:        Perl bindings for libzypp
82 Group:          Development/Languages/Perl
83
84 %description -n perl-zypp
85 -
86
87 %files -n perl-zypp
88 %defattr(-,root,root,-)
89 %{perl_vendorlib}/zypp.pm
90 %{perl_vendorarch}/zypp.so
91
92 %changelog